1 22 package org.jboss.mq.il.jvm; 23 24 25 33 public class JVMClientILService implements org.jboss.mq.il.ClientILService { 34 35 JVMClientIL clientIL; 37 38 44 public org.jboss.mq.il.ClientIL getClientIL() 45 throws java.lang.Exception { 46 return clientIL; 47 } 48 49 50 55 public void start() 56 throws java.lang.Exception { 57 clientIL.stopped = false; 58 } 59 60 63 public void stop() 64 throws java.lang.Exception { 65 clientIL.stopped = true; 66 } 67 68 75 public void init( org.jboss.mq.Connection connection, java.util.Properties props ) 76 throws java.lang.Exception { 77 clientIL = new JVMClientIL( connection ); 78 } 79 } 80 | Popular Tags |