Module org.eclipse.persistence.core
Class BroadcastRemoteConnection
java.lang.Object
org.eclipse.persistence.internal.sessions.coordination.RemoteConnection
org.eclipse.persistence.internal.sessions.coordination.broadcast.BroadcastRemoteConnection
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JGroupsRemoteConnection,JMSTopicRemoteConnection
Purpose: Base class extending RemoteConnection for broadcasting RCM protocols: JMS and Oc4jJGroups.
Description: Defines lifecycle states and most of the methods, as well as exception processing and info logging.
- Since:
- OracleAS TopLink 11g (11.1.1)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Stringprotected Object[]protected Object[]protected RemoteCommandManagerprotected Stringstatic final Stringstatic final Stringstatic final Stringprotected StringFields inherited from class org.eclipse.persistence.internal.sessions.coordination.RemoteConnection
serviceId -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanINTERNAL: Indicates whether all the resources used by connection are freed after close method returns.voidclose()INTERNAL: This method is called when connection in no longer used and it's resources should be freed.protected abstract voidINTERNAL: This method is called by close method.protected voidINTERNAL:executeCommand(byte[] command) INTERNAL: Publish the remote command.executeCommand(Command command) INTERNAL: Publish the remote command.protected abstract ObjectexecuteCommandInternal(Object command) INTERNAL: Publish the remote command.protected voidfailDeserializeMessage(String messageId, Exception exception) INTERNAL: Call this message in case there is failure to extract the object (to be passed to processReceivedObject) from the message.protected Object[]getInfo()INTERNAL:protected Object[]INTERNAL:getState()INTERNAL: State of the connection.INTERNAL:booleanisActive()INTERNAL: Connection is open for business.booleanisClosed()INTERNAL: Connection is closed - all resources were freed.booleanINTERNAL: close method has been called.protected voidlogDebugAfterPublish(Object[] debugInfo, String messageId) INTERNAL: Called from executeCommandInternal to log debugInfo right after sending the message.protected Object[]logDebugBeforePublish(String messageId) INTERNAL: Called from executeCommandInternal to log debugInfo right before sending the message.protected voidlogDebugOnReceiveMessage(String messageId) INTERNAL: Called when a message is received to log debugInfo: { toString(), messageId }.protected voidprocessReceivedObject(Object object, String messageId) INTERNAL: Process the object extracted from the received message.protected booleanINTERNAL: Return whether a BroadcastConnection should check a ServiceId against its own ServiceId to avoid the processing of Commands with the same ServiceId.toString()INTERNAL:Methods inherited from class org.eclipse.persistence.internal.sessions.coordination.RemoteConnection
getServiceId, setServiceId
-
Field Details
-
rcm
-
topicName
-
STATE_ACTIVE
- See Also:
-
STATE_CLOSING
- See Also:
-
STATE_CLOSED
- See Also:
-
state
-
displayString
-
info
-
infoExt
-
-
Constructor Details
-
BroadcastRemoteConnection
-
-
Method Details
-
executeCommand
INTERNAL: Publish the remote command. The result of execution is returned. This method is used only by external (publishing) connection.- Specified by:
executeCommandin classRemoteConnection- Throws:
CommunicationException
-
executeCommand
INTERNAL: Publish the remote command. The result of execution is returned. This method is used only by external (publishing) connection.- Specified by:
executeCommandin classRemoteConnection- Throws:
CommunicationException
-
executeCommandInternal
INTERNAL: Publish the remote command. The result of execution is returned. This method is used only by external (publishing) connection.- Throws:
Exception
-
logDebugBeforePublish
INTERNAL: Called from executeCommandInternal to log debugInfo right before sending the message. Returns array {toString(), messageId }. In case messageId is null returns getInfoExt() avoiding creation of a new array. -
logDebugAfterPublish
INTERNAL: Called from executeCommandInternal to log debugInfo right after sending the message. Only call this method in case logDebugBeforePublish returned non-null this is indication that debug logging is enabled. Pass to this method debugInfo returned by logDebugBeforePublish. Need to pass messageId only in case it has changed since logDebugBeforePublish: some broadcasting protocols (JMS) don't generate messageId until the message is published. -
logDebugOnReceiveMessage
INTERNAL: Called when a message is received to log debugInfo: { toString(), messageId }. This method is used by local (listening) connection only. -
processReceivedObject
INTERNAL: Process the object extracted from the received message. Pass to this method messageInfo created by logDebugOnReceiveMessage method. This method is used by local (listening) connection only. -
failDeserializeMessage
INTERNAL: Call this message in case there is failure to extract the object (to be passed to processReceivedObject) from the message. Pass to this method debugInfo created by logDebugOnReceiveMessage method. This method is used by local (listening) connection only. -
close
public void close()INTERNAL: This method is called when connection in no longer used and it's resources should be freed. As soon as this method is called the state is CLOSING. Usually the state is CLOSED just before the method returns, but there are some special cases (see comment to areAllResourcesFreedOnClose method) when the state is still CLOSING after the method returns.- Overrides:
closein classRemoteConnection
-
getState
INTERNAL: State of the connection. -
isActive
public boolean isActive()INTERNAL: Connection is open for business. -
isClosing
public boolean isClosing()INTERNAL: close method has been called. -
isClosed
public boolean isClosed()INTERNAL: Connection is closed - all resources were freed. -
closeInternal
INTERNAL: This method is called by close method. This method usually (but not always see comment to areAllResourcesFreedOnClose method) frees all the resources.- Throws:
Exception
-
getTopicName
INTERNAL: -
getInfo
INTERNAL: -
getInfoExt
INTERNAL: -
areAllResourcesFreedOnClose
protected boolean areAllResourcesFreedOnClose()INTERNAL: Indicates whether all the resources used by connection are freed after close method returns. Usually that's the case. However in case of local (listening) JMSTopicRemoteConnection close merely indicates to the listening thread that it should free TopicConnection and exit. Note that it may take a while: the listening thread waits until subscriber.receive method either returns a message or throws an exception. -
toString
INTERNAL:- Overrides:
toStringin classRemoteConnection
-
createDisplayString
protected void createDisplayString()INTERNAL: -
shouldCheckServiceId
protected boolean shouldCheckServiceId()INTERNAL: Return whether a BroadcastConnection should check a ServiceId against its own ServiceId to avoid the processing of Commands with the same ServiceId.- Returns:
- boolean
-