Interface JobStreamActuator
public interface JobStreamActuator
Java interface for the node's job stream actuator. To instantiate this interface, you can use
Feign; see of(String) as an example.
You can use one of of(String) or of(ZeebeNode) to create a new client to use
for yourself.
-
Method Summary
Modifier and TypeMethodDescriptionlist()static JobStreamActuatorof(TestApplication<?> node) Returns aJobStreamActuatorinstance using the given node as upstream.static JobStreamActuatorof(io.zeebe.containers.ZeebeNode<?> node) Returns aJobStreamActuatorinstance using the given node as upstream.static JobStreamActuatorReturns aJobStreamActuatorinstance using the given endpoint as upstream.
-
Method Details
-
of
Returns aJobStreamActuatorinstance using the given node as upstream.- Parameters:
node- the node to connect to- Returns:
- a new instance of
JobStreamActuator
-
of
Returns aJobStreamActuatorinstance using the given node as upstream.- Parameters:
node- the node to connect to- Returns:
- a new instance of
JobStreamActuator
-
of
Returns aJobStreamActuatorinstance using the given endpoint as upstream. The endpoint is expected to be a complete absolute URL, e.g. "http://localhost:9600/actuator/jobstreams".- Parameters:
endpoint- the actuator URL to connect to- Returns:
- a new instance of
JobStreamActuator
-
list
JobStreamEndpoint.JobStreams list() -
listClient
List<JobStreamEndpoint.ClientJobStream> listClient() -
listRemote
List<JobStreamEndpoint.RemoteJobStream> listRemote()
-