Package io.dapr.utils

Class DurationUtils


  • public class DurationUtils
    extends Object
    • Constructor Detail

      • DurationUtils

        public DurationUtils()
    • Method Detail

      • convertDurationFromDaprFormat

        public static Duration convertDurationFromDaprFormat​(String valueString)
        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

        public static String convertDurationToDaprFormat​(Duration value)
        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)