use of io.zeebe.broker.event.processor.TopicSubscriptionEvent in project zeebe by zeebe-io.
the class ClientApiMessageHandler method initEventTypeMap.
private void initEventTypeMap() {
eventsByType.put(EventType.DEPLOYMENT_EVENT, new DeploymentEvent());
eventsByType.put(EventType.TASK_EVENT, new TaskEvent());
eventsByType.put(EventType.WORKFLOW_INSTANCE_EVENT, new WorkflowInstanceEvent());
eventsByType.put(EventType.SUBSCRIBER_EVENT, new TopicSubscriberEvent());
eventsByType.put(EventType.SUBSCRIPTION_EVENT, new TopicSubscriptionEvent());
eventsByType.put(EventType.TOPIC_EVENT, new TopicEvent());
}
Aggregations