Interface ClockPinCommandStep1

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

@Deprecated public interface ClockPinCommandStep1 extends FinalCommandStep<PinClockResponse>
Deprecated.
since 8.8 for removal in 8.9, replaced by ClockPinCommandStep1
  • Method Summary

    Modifier and Type
    Method
    Description
    time(long timestamp)
    Deprecated.
    Specifies the exact time to which the Zeebe engine's internal clock should be pinned using an epoch timestamp in milliseconds.
    time(Instant instant)
    Deprecated.
    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.zeebe.client.api.command.FinalCommandStep

    requestTimeout, send
  • Method Details

    • time

      ClockPinCommandStep1 time(long timestamp)
      Deprecated.
      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

      Deprecated.
      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.