Exemple #1
0
 [TearDown] public virtual void tearDown()
 {
     try {
         OrderTable.prefix = OrderTable.DEFAULT_PREFIX;
         db.Db.reallyRollback();
         emailer.reset();
         Dates.thawNow();
         SystemHeartbeat.waitTimeMillis = SystemHeartbeat.defaultWaitMillis;
         QTopic.useRetroactiveConsumer  = true;
         JChannel.closeResources();
         O.timerManager().exitTimerTestMode();
         Symbol.clearCache();
         LIVE_SYSTEM.clearDetailsCache();
         LiveWatcher.setPositionsBrokerForTest(LiveWatcher.DEFAULT_POSITIONS_BROKER);
     } finally {
         db.TestLocksTable.TEST_LOCK.releaseLock("test", false);
         Log.doNotDebugSqlForever();
     }
 }
Exemple #2
0
 public Channel(JChannel jTopic)
 {
     this.jTopic = jTopic;
 }
Exemple #3
0
 public Topic(JChannel jTopic) : base(jTopic)
 {
 }
Exemple #4
0
 public Topic(string topic, bool doRetroactiveConsumer) : this(topic, JChannel.defaultBroker(), doRetroactiveConsumer)
 {
 }
Exemple #5
0
 public Queue(string name) : this(name, JChannel.defaultBroker())
 {
 }
Exemple #6
0
 public Queue(JChannel queue) : base(queue)
 {
 }