Package io.dapr.utils
Class DurationUtils
java.lang.Object
io.dapr.utils.DurationUtils
public class DurationUtils extends Object
-
Constructor Summary
Constructors Constructor Description DurationUtils()
-
Method Summary
Modifier and Type Method Description static Duration
convertDurationFromDaprFormat(String valueString)
Converts time from the String format used by Dapr into a Duration.static String
convertDurationToDaprFormat(Duration value)
Converts a Duration to the format used by the Dapr runtime.
-
Constructor Details
-
DurationUtils
public DurationUtils()
-
-
Method Details
-
convertDurationFromDaprFormat
Converts time from the String format used by Dapr into a Duration.- Parameters:
valueString
- A String representing time in the Dapr runtime's format (e.g. 4h15m50s60ms).- Returns:
- A Duration
-
convertDurationToDaprFormat
Converts a Duration to the format used by the Dapr runtime.- Parameters:
value
- Duration- Returns:
- The Duration formatted as a String in the format the Dapr runtime uses (e.g. 4h15m50s60ms)
-