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 String
protected Object[]
protected Object[]
protected RemoteCommandManager
protected String
static final String
static final String
static final String
protected String
Fields inherited from class org.eclipse.persistence.internal.sessions.coordination.RemoteConnection
serviceId
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
INTERNAL: Indicates whether all the resources used by connection are freed after close method returns.void
close()
INTERNAL: This method is called when connection in no longer used and it's resources should be freed.protected abstract void
INTERNAL: This method is called by close method.protected void
INTERNAL:executeCommand
(byte[] command) INTERNAL: Publish the remote command.executeCommand
(Command command) INTERNAL: Publish the remote command.protected abstract Object
executeCommandInternal
(Object command) INTERNAL: Publish the remote command.protected void
failDeserializeMessage
(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:boolean
isActive()
INTERNAL: Connection is open for business.boolean
isClosed()
INTERNAL: Connection is closed - all resources were freed.boolean
INTERNAL: close method has been called.protected void
logDebugAfterPublish
(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 void
logDebugOnReceiveMessage
(String messageId) INTERNAL: Called when a message is received to log debugInfo: { toString(), messageId }.protected void
processReceivedObject
(Object object, String messageId) INTERNAL: Process the object extracted from the received message.protected boolean
INTERNAL: 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:
executeCommand
in 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:
executeCommand
in 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:
close
in 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:
toString
in 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
-