Interface PinClockCommandStep1

All Superinterfaces:
FinalCommandStep<PinClockResponse>
All Known Implementing Classes:
PinClockCommandImpl

public interface PinClockCommandStep1 extends FinalCommandStep<PinClockResponse>
  • Method Summary

    Modifier and Type
    Method
    Description
    time(long timestamp)
    Specifies the exact time to which the Zeebe engine's internal clock should be pinned using an epoch timestamp in milliseconds.
    time(Instant instant)
    Specifies the exact time to which the Zeebe engine's internal clock should be pinned using an Instant object.

    Methods inherited from interface io.camunda.client.api.command.FinalCommandStep

    execute, requestTimeout, send
  • Method Details

    • time

      PinClockCommandStep1 time(long timestamp)
      Specifies the exact time to which the Zeebe engine's internal clock should be pinned using an epoch timestamp in milliseconds.
      Parameters:
      timestamp - the epoch time in milliseconds to which the clock should be pinned
      Returns:
      the builder for this command. Call FinalCommandStep.send() to complete the command and send it to the broker.
    • time

      Specifies the exact time to which the Zeebe engine's internal clock should be pinned using an Instant object.
      Parameters:
      instant - the Instant to which the clock should be pinned
      Returns:
      the builder for this command. Call FinalCommandStep.send() to complete the command and send it to the broker.