Interface ChannelFactory
-
- All Superinterfaces:
ChannelFactory
public interface ChannelFactory extends ChannelFactory
Factory for creating JGroups channels.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProtocolStackConfigurationgetProtocolStackConfiguration()Returns the protocol stack configuration of this channel factory.booleanisUnknownForkResponse(org.jgroups.Message response)Determines whether or not the specified message response indicates the fork stack or fork channel required to handle a request does not exist on the recipient node.-
Methods inherited from interface org.wildfly.clustering.jgroups.ChannelFactory
createChannel
-
-
-
-
Method Detail
-
getProtocolStackConfiguration
ProtocolStackConfiguration getProtocolStackConfiguration()
Returns the protocol stack configuration of this channel factory.- Returns:
- the protocol stack configuration of this channel factory
-
isUnknownForkResponse
boolean isUnknownForkResponse(org.jgroups.Message response)
Determines whether or not the specified message response indicates the fork stack or fork channel required to handle a request does not exist on the recipient node.- Parameters:
response- a message response- Returns:
- true, if the response indicates a missing fork stack or channel.
-
-