Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonNode;
import io.dapr.utils.DurationUtils;
import io.dapr.utils.ObjectSerializer;

import java.io.IOException;
Expand Down
142 changes: 0 additions & 142 deletions sdk-actors/src/main/java/io/dapr/actors/runtime/DurationUtils.java

This file was deleted.

5 changes: 2 additions & 3 deletions sdk/src/main/java/io/dapr/client/DaprClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,12 @@ public interface DaprClient {
* Retrieve a State based on their key.
*
* @param state The key of the State to be retrieved.
* @param stateOptions
* @param stateOptions The options for the call to use.
* @param clazz the Type of State needed as return.
* @param <T> the Type of the return.
* @param <K> The Type of the key of the State.
* @return A Mono Plan for the requested State.
*/
<T, K> Mono<T> getState(StateKeyValue<K> state, StateOptions stateOptions, Class<T> clazz);
<T> Mono<StateKeyValue<T>> getState(StateKeyValue<T> state, StateOptions stateOptions, Class<T> clazz);

/**
* Save/Update a list of states.
Expand Down
Loading