io.camunda.service.ClockServices Maven / Gradle / Ivy
The newest version!
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Licensed under the Camunda License 1.0. You may not use this file
* except in compliance with the Camunda License 1.0.
*/
package io.camunda.service;
import io.camunda.security.auth.Authentication;
import io.camunda.security.configuration.SecurityConfiguration;
import io.camunda.zeebe.broker.client.api.BrokerClient;
import io.camunda.zeebe.gateway.impl.broker.request.BrokerClockPinRequest;
import io.camunda.zeebe.gateway.impl.broker.request.BrokerClockResetRequest;
import io.camunda.zeebe.protocol.impl.record.value.clock.ClockRecord;
import java.util.concurrent.CompletableFuture;
public final class ClockServices extends ApiServices {
public ClockServices(
final BrokerClient brokerClient,
final SecurityConfiguration securityConfiguration,
final Authentication authentication) {
super(brokerClient, securityConfiguration, authentication);
}
@Override
public ClockServices withAuthentication(final Authentication authentication) {
return new ClockServices(brokerClient, securityConfiguration, authentication);
}
public CompletableFuture pinClock(final long pinnedEpoch) {
return sendBrokerRequest(new BrokerClockPinRequest(pinnedEpoch));
}
public CompletableFuture resetClock() {
return sendBrokerRequest(new BrokerClockResetRequest());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy