Java Code Examples for org.apache.pulsar.common.api.proto.PulsarApi#CommandFlow
The following examples show how to use
org.apache.pulsar.common.api.proto.PulsarApi#CommandFlow .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MockBrokerService.java From pulsar with Apache License 2.0 | 5 votes |
@Override protected void handleFlow(PulsarApi.CommandFlow flow) { if (handleFlow != null) { handleFlow.apply(ctx, flow); } // default: do nothing }
Example 2
Source File: MockBrokerServiceHooks.java From pulsar with Apache License 2.0 | votes |
public void apply(ChannelHandlerContext ctx, PulsarApi.CommandFlow flow);