All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.persistence.internal.sessions.coordination.RemoteConnection Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1998, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0,
 * or the Eclipse Distribution License v. 1.0 which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */

// Contributors:
//     Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.internal.sessions.coordination;

import org.eclipse.persistence.exceptions.CommunicationException;
import org.eclipse.persistence.sessions.coordination.ServiceId;
import org.eclipse.persistence.sessions.coordination.Command;

/**
 * 

* Purpose: Define an abstract class for the remote object that can execute * a remote command using different transport protocols. *

* Description: This abstract class represents the remote object that is * used by the remote command manager to send remote commands. The underlying * transport mechanism is transparently implemented by the transport subclass * implementations. * * @since OracleAS TopLink 10g (9.0.4) */ public abstract class RemoteConnection implements java.io.Serializable { /** The service on the receiving end of this connection */ protected ServiceId serviceId; /** * INTERNAL: * Execute the remote command. The result of execution is returned. */ public abstract Object executeCommand(Command command) throws CommunicationException; /** * INTERNAL: * Execute the remote command. The result of execution is returned. */ public abstract Object executeCommand(byte[] command) throws CommunicationException; /** * INTERNAL: * Return the service info of the receiving service */ public ServiceId getServiceId() { return serviceId; } /** * INTERNAL: * Set the service info of the receiving service */ public void setServiceId(ServiceId newServiceId) { serviceId = newServiceId; } public String toString() { return "RemoteConnection[" + serviceId + "]"; } /** * INTERNAL: * cleanup whatever is necessary. Invoked when the TransportManager discard connections. */ public void close() { } ; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy