Package org.rhq.enterprise.communications.command.client

Examples of org.rhq.enterprise.communications.command.client.ClientCommandSenderConfiguration


     *
     * @param remote_stream the stream to be prepared with a sender
     */
    protected void prepareRemoteInputStream(RemoteInputStream remote_stream) {
        String server_endpoint = remote_stream.getServerEndpoint();
        ClientCommandSenderConfiguration config = getServiceContainer().getClientConfiguration();

        // we know we only make synchronous calls with non-guaranteed commands, so disable guaranteed delivery
        // setting the filename to null also ensures our sender doesn't try to access the spool file at all
        config.commandSpoolFileName = null;

View Full Code Here


     *
     * @param remote_stream the stream to be prepared with a sender
     */
    protected void prepareRemoteOutputStream(RemoteOutputStream remote_stream) {
        String server_endpoint = remote_stream.getServerEndpoint();
        ClientCommandSenderConfiguration config = getServiceContainer().getClientConfiguration();

        // we know we only make synchronous calls with non-guaranteed commands, so disable guaranteed delivery
        // setting the filename to null also ensures our sender doesn't try to access the spool file at all
        config.commandSpoolFileName = null;

View Full Code Here

TOP

Related Classes of org.rhq.enterprise.communications.command.client.ClientCommandSenderConfiguration

Copyright © 2018 www.massapicom. 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.