use of org.apache.storm.eventhubs.spout.SimplePartitionManager in project storm by apache.
the class AtMostOnceEventCount method createEventHubSpout.
@Override
protected EventHubSpout createEventHubSpout() {
IPartitionManagerFactory pmFactory = new IPartitionManagerFactory() {
private static final long serialVersionUID = 1L;
@Override
public IPartitionManager create(EventHubSpoutConfig spoutConfig, String partitionId, IStateStore stateStore, IEventHubReceiver receiver) {
return new SimplePartitionManager(spoutConfig, partitionId, stateStore, receiver);
}
};
EventHubSpout eventHubSpout = new EventHubSpout(spoutConfig, null, pmFactory, null);
return eventHubSpout;
}
Aggregations