Interface PartitionsActuator


public interface PartitionsActuator
Java interface for the broker's partitions actuator (roughly mapping to the broker admin service). To instantiate this interface, you can use Feign; see of(String) as an example.

You can use one of of(String) or of(ZeebeBrokerNode) to create a new client to use for yourself.

Adding a new method is simple: simply define the input/output here as you normally would, and make sure to add the correct JSON encoding headers (`Accept` for the response type, `Content-Type` if there's a body to send). See LoggersActuator for a more complete example.