Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Alexander Kuppe2013-07-04 14:53:26 +0000
committerMarkus Alexander Kuppe2013-07-04 14:53:26 +0000
commitb8b26a9b5a0984231e07b3653d42d523ea76b279 (patch)
treea5aef11084a5eea71cc7f900e071e1c3a7f429c1 /server-side/bundles
parent4c3a5815546f83591c294943a8a199815164e6a4 (diff)
downloadorg.eclipse.ecf-b8b26a9b5a0984231e07b3653d42d523ea76b279.tar.gz
org.eclipse.ecf-b8b26a9b5a0984231e07b3653d42d523ea76b279.tar.xz
org.eclipse.ecf-b8b26a9b5a0984231e07b3653d42d523ea76b279.zip
NEW - bug 412261: [Distributed EventAdmin] Allow to only logserialization failures https://bugs.eclipse.org/bugs/show_bug.cgi?id=412261- Part #2: Allows to register an EventTopicFilter service that getslooked up by DistributedEventAdmin. On a filter hit, the event will onlybe send out locally
Diffstat (limited to 'server-side/bundles')
-rw-r--r--server-side/bundles/org.eclipse.ecf.remoteservice.eventadmin/src/org/eclipse/ecf/remoteservice/eventadmin/EventTopicFilter.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/server-side/bundles/org.eclipse.ecf.remoteservice.eventadmin/src/org/eclipse/ecf/remoteservice/eventadmin/EventTopicFilter.java b/server-side/bundles/org.eclipse.ecf.remoteservice.eventadmin/src/org/eclipse/ecf/remoteservice/eventadmin/EventTopicFilter.java
new file mode 100644
index 000000000..c8f4230f1
--- /dev/null
+++ b/server-side/bundles/org.eclipse.ecf.remoteservice.eventadmin/src/org/eclipse/ecf/remoteservice/eventadmin/EventTopicFilter.java
@@ -0,0 +1,21 @@
+/****************************************************************************
+ * Copyright (c) 2013 Markus Alexander Kuppe and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Markus Alexander Kuppe - initial API and implementation
+ *****************************************************************************/
+package org.eclipse.ecf.remoteservice.eventadmin;
+
+/**
+ * @since 1.2
+ */
+public class EventTopicFilter {
+
+ public String[] getFilters() {
+ return null;
+ }
+}

Back to the top