]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.cms/src/org/argeo/api/cms/CmsEventBus.java
Remove branch from root project name
[lgpl/argeo-commons.git] / org.argeo.api.cms / src / org / argeo / api / cms / CmsEventBus.java
1 package org.argeo.api.cms;
2
3 import java.util.Map;
4
5 public interface CmsEventBus {
6 void sendEvent(String topic, Map<String, Object> event);
7
8 void addEventSubscriber(String topic, CmsEventSubscriber eventSubscriber);
9
10 void removeEventSubscriber(String topic, CmsEventSubscriber eventSubscriber);
11
12 }