use of io.camunda.zeebe.client.impl.response.DeploymentEventImpl in project zeebe by camunda.
the class DeployProcessCommandImpl method send.
@Override
public ZeebeFuture<DeploymentEvent> send() {
final DeployProcessRequest request = requestBuilder.build();
final RetriableClientFutureImpl<DeploymentEvent, GatewayOuterClass.DeployProcessResponse> future = new RetriableClientFutureImpl<>(DeploymentEventImpl::new, retryPredicate, streamObserver -> send(request, streamObserver));
send(request, future);
return future;
}
use of io.camunda.zeebe.client.impl.response.DeploymentEventImpl in project zeebe by zeebe-io.
the class DeployProcessCommandImpl method send.
@Override
public ZeebeFuture<DeploymentEvent> send() {
final DeployProcessRequest request = requestBuilder.build();
final RetriableClientFutureImpl<DeploymentEvent, GatewayOuterClass.DeployProcessResponse> future = new RetriableClientFutureImpl<>(DeploymentEventImpl::new, retryPredicate, streamObserver -> send(request, streamObserver));
send(request, future);
return future;
}
use of io.camunda.zeebe.client.impl.response.DeploymentEventImpl in project zeebe by zeebe-io.
the class DeployResourceCommandImpl method send.
@Override
public ZeebeFuture<DeploymentEvent> send() {
final DeployResourceRequest request = requestBuilder.build();
final RetriableClientFutureImpl<DeploymentEvent, GatewayOuterClass.DeployResourceResponse> future = new RetriableClientFutureImpl<>(DeploymentEventImpl::new, retryPredicate, streamObserver -> send(request, streamObserver));
send(request, future);
return future;
}
use of io.camunda.zeebe.client.impl.response.DeploymentEventImpl in project zeebe by camunda-cloud.
the class DeployProcessCommandImpl method send.
@Override
public ZeebeFuture<DeploymentEvent> send() {
final DeployProcessRequest request = requestBuilder.build();
final RetriableClientFutureImpl<DeploymentEvent, GatewayOuterClass.DeployProcessResponse> future = new RetriableClientFutureImpl<>(DeploymentEventImpl::new, retryPredicate, streamObserver -> send(request, streamObserver));
send(request, future);
return future;
}
use of io.camunda.zeebe.client.impl.response.DeploymentEventImpl in project zeebe by camunda-cloud.
the class DeployResourceCommandImpl method send.
@Override
public ZeebeFuture<DeploymentEvent> send() {
final DeployResourceRequest request = requestBuilder.build();
final RetriableClientFutureImpl<DeploymentEvent, GatewayOuterClass.DeployResourceResponse> future = new RetriableClientFutureImpl<>(DeploymentEventImpl::new, retryPredicate, streamObserver -> send(request, streamObserver));
send(request, future);
return future;
}
Aggregations