source: objectmq/src/omq/common/event/EventTrigger.java @ 3

Last change on this file since 3 was 3, checked in by stoda, 12 years ago
File size: 1.8 KB
Line 
1package omq.common.event;
2
3import java.io.IOException;
4import java.security.KeyManagementException;
5import java.security.NoSuchAlgorithmException;
6import java.util.Properties;
7
8import omq.common.remote.RevoConnectionFactory;
9import omq.common.util.RevoEnvironment;
10import omq.common.util.Serializer;
11import omq.exception.EnvironmentException;
12import omq.exception.SerializerException;
13
14
15import com.rabbitmq.client.Channel;
16import com.rabbitmq.client.Connection;
17
18/**
19 * This class is used to publish events into a topic
20 *
21 * @author Sergi Toda <sergi.toda@estudiants.urv.cat>
22 *
23 */
24public class EventTrigger {
25        private static EventTrigger trigger;
26        private static Connection connection;
27        private static Channel channel;
28
29        private EventTrigger(Properties env) throws IOException, KeyManagementException, NoSuchAlgorithmException {
30                connection = RevoConnectionFactory.getConnection(env);
31                channel = connection.createChannel();
32        }
33
34        public static void initEventTrigger(Properties env) throws EnvironmentException, Exception {
35                if (trigger == null) {
36                        trigger = new EventTrigger(env);
37                }
38        }
39
40        public static void initEventTrigger() throws EnvironmentException, Exception {
41                if (trigger == null) {
42                        trigger = new EventTrigger(RevoEnvironment.getEnvironment());
43                }
44        }
45
46        public static synchronized void publish(String topic, Object obj) throws IOException, SerializerException {
47                Event event = new Event(topic, obj);
48                channel.exchangeDeclare(topic, "fanout");
49                channel.basicPublish(topic, "", null, Serializer.serialize(event));
50        }
51
52        public static synchronized void publish(String topic, Event event) throws IOException, SerializerException {
53                channel.exchangeDeclare(topic, "fanout");
54                channel.basicPublish(topic, "", null, Serializer.serialize(event));
55        }
56
57        public static void close() throws Exception {
58                trigger = null;
59                channel.close();
60                connection.close();
61        }
62}
Note: See TracBrowser for help on using the repository browser.