io.camunda.zeebe.transport.stream.api.RemoteStreamService Maven / Gradle / Ivy
/*
* 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.zeebe.transport.stream.api;
import io.atomix.cluster.ClusterMembershipEventListener;
import io.camunda.zeebe.scheduler.ActorSchedulingService;
import io.camunda.zeebe.scheduler.ConcurrencyControl;
import io.camunda.zeebe.scheduler.future.ActorFuture;
import io.camunda.zeebe.util.buffer.BufferWriter;
import java.util.Collection;
/**
* A remote stream service that manages streams from the Gateways.
*
* @param associated metadata with a stream
* @param the payload type that can be pushed to the streams
*/
public interface RemoteStreamService
extends ClusterMembershipEventListener {
ActorFuture> start(
ActorSchedulingService actorSchedulingService, ConcurrencyControl concurrencyControl);
ActorFuture closeAsync(ConcurrencyControl concurrencyControl);
/** Returns all registered remote streams. */
Collection> streams();
}