Class ClientImpl

    • Method Detail

      • getBus

        public Bus getBus()
        Description copied from interface: Client
        Retrieves the Bus that was used to create the Client
        Specified by:
        getBus in interface Client
        Returns:
        the Bus
      • destroy

        public void destroy()
        Description copied from interface: Client
        Indicates that the client is no longer needed and that any resources it holds can now be freed.
        Specified by:
        destroy in interface Client
      • releaseThreadContexts

        public void releaseThreadContexts()
      • getRequestContext

        public Map<String,​Object> getRequestContext()
        Description copied from interface: Client
        Gets the request context used for future invocations
        Specified by:
        getRequestContext in interface Client
        Returns:
        context The context
      • getResponseContext

        public Map<String,​Object> getResponseContext()
        Description copied from interface: Client
        Gets the response context from the last invocation on this thread
        Specified by:
        getResponseContext in interface Client
        Returns:
        context The context
      • isThreadLocalRequestContext

        public boolean isThreadLocalRequestContext()
        Description copied from interface: Client
        Checks if the Request context is thread local or global.
        Specified by:
        isThreadLocalRequestContext in interface Client
        Returns:
        true if the request context is a thread local
      • setThreadLocalRequestContext

        public void setThreadLocalRequestContext​(boolean b)
        Description copied from interface: Client
        Sets whether the request context is thread local or global to this client. By default, the request context is "global" in that any values set in the context are seen by all threads using this client. If set to true, the context is changed to be a ThreadLocal and values set are not seen by other threads.
        Specified by:
        setThreadLocalRequestContext in interface Client
      • invoke

        public Object[] invoke​(BindingOperationInfo oi,
                               Object... params)
                        throws Exception
        Description copied from interface: Client
        Invokes an operation synchronously
        Specified by:
        invoke in interface Client
        Parameters:
        oi - The operation to be invoked
        params - The params that matches the parts of the input message of the operation
        Returns:
        The return values that matche the parts of the output message of the operation
        Throws:
        Exception
      • invoke

        public Object[] invoke​(String operationName,
                               Object... params)
                        throws Exception
        Description copied from interface: Client
        Invokes an operation synchronously
        Specified by:
        invoke in interface Client
        Parameters:
        operationName - The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.
        params - The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped
        Returns:
        The return values that matche the parts of the output message of the operation
        Throws:
        Exception
      • invoke

        public Object[] invoke​(QName operationName,
                               Object... params)
                        throws Exception
        Description copied from interface: Client
        Invokes an operation synchronously
        Specified by:
        invoke in interface Client
        Parameters:
        operationName - The name of the operation to be invoked
        params - The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped
        Returns:
        The return values that matche the parts of the output message of the operation
        Throws:
        Exception
      • invokeWrapped

        public Object[] invokeWrapped​(String operationName,
                                      Object... params)
                               throws Exception
        Description copied from interface: Client
        Invokes an operation synchronously
        Specified by:
        invokeWrapped in interface Client
        Parameters:
        operationName - The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.
        params - The params that matches the parts of the input message of the operation
        Returns:
        The return values that matche the parts of the output message of the operation
        Throws:
        Exception
      • invokeWrapped

        public Object[] invokeWrapped​(QName operationName,
                                      Object... params)
                               throws Exception
        Description copied from interface: Client
        Invokes an operation synchronously
        Specified by:
        invokeWrapped in interface Client
        Parameters:
        operationName - The name of the operation to be invoked
        params - The params that matches the parts of the input message of the operation
        Returns:
        The return values that matche the parts of the output message of the operation
        Throws:
        Exception
      • invoke

        public Object[] invoke​(BindingOperationInfo oi,
                               Object[] params,
                               Map<String,​Object> context)
                        throws Exception
        Description copied from interface: Client
        Invokes an operation synchronously
        Specified by:
        invoke in interface Client
        Parameters:
        oi - The operation to be invoked
        params - The params that matches the parts of the input message of the operation
        context - Optional (can be null) contextual information for the invocation
        Returns:
        The return values that matche the parts of the output message of the operation
        Throws:
        Exception
      • invoke

        public void invoke​(ClientCallback callback,
                           String operationName,
                           Object... params)
                    throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invoke in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        operationName - The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.
        params - The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped
        Throws:
        Exception
      • invoke

        public void invoke​(ClientCallback callback,
                           QName operationName,
                           Object... params)
                    throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invoke in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        operationName - The name of the operation to be invoked
        params - The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped
        Throws:
        Exception
      • invokeWrapped

        public void invokeWrapped​(ClientCallback callback,
                                  String operationName,
                                  Object... params)
                           throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invokeWrapped in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        operationName - The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.
        params - The params that matches the parts of the input message of the operation
        Throws:
        Exception
      • invokeWrapped

        public void invokeWrapped​(ClientCallback callback,
                                  QName operationName,
                                  Object... params)
                           throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invokeWrapped in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        operationName - The name of the operation to be invoked
        params - The params that matches the parts of the input message of the operation
        Throws:
        Exception
      • invoke

        public void invoke​(ClientCallback callback,
                           BindingOperationInfo oi,
                           Object... params)
                    throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invoke in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        oi - The operation to be invoked
        params - The params that matches the parts of the input message of the operation
        Throws:
        Exception
      • invoke

        public void invoke​(ClientCallback callback,
                           BindingOperationInfo oi,
                           Object[] params,
                           Map<String,​Object> context)
                    throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invoke in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        oi - The operation to be invoked
        params - The params that matches the parts of the input message of the operation
        context - contextual information for the invocation
        Throws:
        Exception
      • invoke

        public void invoke​(ClientCallback callback,
                           BindingOperationInfo oi,
                           Object[] params,
                           Exchange exchange)
                    throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invoke in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        oi - The operation to be invoked
        params - The params that matches the parts of the input message of the operation
        exchange - The Exchange to be used for the invocation
        Throws:
        Exception
      • invoke

        public void invoke​(ClientCallback callback,
                           BindingOperationInfo oi,
                           Object[] params,
                           Map<String,​Object> context,
                           Exchange exchange)
                    throws Exception
        Description copied from interface: Client
        Invokes an operation asynchronously
        Specified by:
        invoke in interface Client
        Parameters:
        callback - The callback that is called when the response is ready
        oi - The operation to be invoked
        params - The params that matches the parts of the input message of the operation
        context - Optional (can be null) contextual information for the invocation
        exchange - Optional (can be null) The Exchange to be used for the invocation
        Throws:
        Exception
      • invoke

        public Object[] invoke​(BindingOperationInfo oi,
                               Object[] params,
                               Map<String,​Object> context,
                               Exchange exchange)
                        throws Exception
        Description copied from interface: Client
        Invokes an operation synchronously
        Specified by:
        invoke in interface Client
        Specified by:
        invoke in interface Retryable
        Parameters:
        oi - The operation to be invoked
        params - The params that matches the parts of the input message of the operation
        context - Optional (can be null) contextual information for the invocation
        exchange - The Exchange to be used for the invocation
        Returns:
        The return values that matche the parts of the output message of the operation
        Throws:
        Exception
      • onewayOnly

        protected void onewayOnly​(Exchange exhange)
      • setParameters

        protected void setParameters​(Object[] params,
                                     Message message)
      • onMessage

        public void onMessage​(Message message)
        Description copied from interface: MessageObserver
        Called for an incoming message, i.e. where the content format(s) is/are source(s).
        Specified by:
        onMessage in interface MessageObserver
      • getConduit

        public Conduit getConduit()
        Description copied from interface: Client
        Get the Conduit that messages for this client will be sent on.
        Specified by:
        getConduit in interface Client
        Returns:
        Conduit
      • prepareConduitSelector

        protected void prepareConduitSelector​(Message message)
      • setEndpoint

        protected void setEndpoint​(Endpoint e)
      • getSynchronousTimeout

        public int getSynchronousTimeout()
      • setSynchronousTimeout

        public void setSynchronousTimeout​(int synchronousTimeout)
      • setExecutor

        public void setExecutor​(Executor executor)
        Description copied from interface: Client
        Sets the executor which is used to process Asynchronous responses. The default is to use the threads provided by the transport. (example: the JMS listener threads)
        Specified by:
        setExecutor in interface Client