summaryrefslogtreecommitdiff
path: root/java/java/client/test/src/org/apache/qpid/example/subscriber/MonitoredSubscriptionWrapper.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java/client/test/src/org/apache/qpid/example/subscriber/MonitoredSubscriptionWrapper.java')
-rw-r--r--java/java/client/test/src/org/apache/qpid/example/subscriber/MonitoredSubscriptionWrapper.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/java/java/client/test/src/org/apache/qpid/example/subscriber/MonitoredSubscriptionWrapper.java b/java/java/client/test/src/org/apache/qpid/example/subscriber/MonitoredSubscriptionWrapper.java
new file mode 100644
index 0000000000..3bc1c5ea08
--- /dev/null
+++ b/java/java/client/test/src/org/apache/qpid/example/subscriber/MonitoredSubscriptionWrapper.java
@@ -0,0 +1,59 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.qpid.example.subscriber;
+
+import org.apache.log4j.BasicConfigurator;
+import org.apache.qpid.example.shared.Statics;
+
+import java.util.Properties;
+
+/**
+ * Allows you to simply start a monitored subscriber
+ * Author: Marnie McCormack
+ * Date: 08-Aug-2006
+ * Time: 12:05:52
+ * Copyright JPMorgan Chase 2006
+ */
+public class MonitoredSubscriptionWrapper {
+
+ private static MonitoredSubscriber _subscriber;
+
+ public static void main(String args[])
+ {
+ //switch on logging
+ BasicConfigurator.configure();
+
+ _subscriber = new MonitoredSubscriber();
+
+ //using system props but can replace with app appropriate config here
+ Properties props = System.getProperties();
+
+ //note that for failover should set -Dhost=host1:port1;host2:port2
+ //Client will then failover in order i.e. connect to first host and failover to second and so on
+ _subscriber.subscribe(props.getProperty(Statics.HOST_PROPERTY),
+ props.getProperty(Statics.USER_PROPERTY), props.getProperty(Statics.PWD_PROPERTY),
+ props.getProperty(Statics.VIRTUAL_PATH_PROPERTY), props.getProperty(Statics.QUEUE_NAME));
+ }
+
+ //Stop subscribing now ...
+ public static void stop()
+ {
+ _subscriber.stop();
+ }
+}