Examples of RequestSupport


Examples of org.jboss.jms.wireformat.RequestSupport

   public SessionDelegate createSessionDelegate(boolean transacted,
                                                int acknowledgmentMode,
                                                boolean isXA) throws JMSException
   {
      RequestSupport req =
         new ConnectionCreateSessionDelegateRequest(id, version, transacted,
                                                    acknowledgmentMode, isXA);

      return (SessionDelegate)doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

   }


   public String getClientID() throws JMSException
   {
      RequestSupport req = new ConnectionGetClientIDRequest(id, version);

      return (String)doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

   }

   public void sendTransaction(TransactionRequest request,
                               boolean checkForDuplicates) throws JMSException
   {
      RequestSupport req =
         new ConnectionSendTransactionRequest(id, version, request, checkForDuplicates);

      doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

      doInvoke(client, req);
   }

   public void setClientID(String clientID) throws JMSException
   {
      RequestSupport req = new ConnectionSetClientIDRequest(id, version, clientID);

      doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

      throw new IllegalStateException("This invocation should not be handled here!");
   }

   public void start() throws JMSException
   {
      RequestSupport req = new ConnectionStartRequest(id, version);

      doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

      doInvoke(client, req);
   }

   public void stop() throws JMSException
   {
      RequestSupport req = new ConnectionStopRequest(id, version);

      doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

      doInvoke(client, req);
   }

   public MessagingXid[] getPreparedTransactions() throws JMSException
   {
      RequestSupport req = new ConnectionGetPreparedTransactionsRequest(id, version);

      return (MessagingXid[])doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

      throw new IllegalStateException("This invocation should not be handled here!");
   }
  
   public IDBlock getIdBlock(int size) throws JMSException
   {
      RequestSupport req = new ConnectionGetIDBlockRequest(id, version, size);

      return (IDBlock)doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

   // Closeable implementation ---------------------------------------------------------------------

   public void close() throws JMSException
   {
      RequestSupport req = new CloseRequest(id, version);

      doInvoke(client, req);
   }
View Full Code Here

Examples of org.jboss.jms.wireformat.RequestSupport

      doInvoke(client, req);
   }

   public long closing() throws JMSException
   {
      RequestSupport req = new ClosingRequest(id, version);

      return ((Long)doInvoke(client, req)).longValue();
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.