Uses of Class
org.jgroups.Message.TransientFlag
-
Packages that use Message.TransientFlag Package Description org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc.org.jgroups.blocks Provides building blocks that are layered on top of channels.org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of Message.TransientFlag in org.jgroups
Methods in org.jgroups that return Message.TransientFlag Modifier and Type Method Description static Message.TransientFlag
Message.TransientFlag. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Message.TransientFlag[]
Message.TransientFlag. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jgroups with parameters of type Message.TransientFlag Modifier and Type Method Description Message
BaseMessage. clearFlag(Message.TransientFlag... flags)
Message
Message. clearFlag(Message.TransientFlag... flags)
Removes a number of transient flags from the message.boolean
BaseMessage. isFlagSet(Message.TransientFlag flag)
boolean
Message. isFlagSet(Message.TransientFlag flag)
Returns true if a transient flag is set, false otherwiseMessage
BaseMessage. setFlag(Message.TransientFlag... flags)
Same asBaseMessage.setFlag(Flag...)
except that transient flags are not marshalledMessage
Message. setFlag(Message.TransientFlag... flags)
Sets one or more transient flags (xor-ing).boolean
BaseMessage. setFlagIfAbsent(Message.TransientFlag flag)
Atomically checks if a given flag is set and - if not - sets it.boolean
Message. setFlagIfAbsent(Message.TransientFlag flag)
Atomically sets a transient flag if not set. -
Uses of Message.TransientFlag in org.jgroups.blocks
Methods in org.jgroups.blocks with parameters of type Message.TransientFlag Modifier and Type Method Description RequestOptions
RequestOptions. clearTransientFlags(Message.TransientFlag... flags)
RequestOptions
RequestOptions. setTransientFlags(Message.TransientFlag... flags)
RequestOptions
RequestOptions. transientFlags(Message.TransientFlag... flags)
boolean
RequestOptions. transientFlagSet(Message.TransientFlag flag)
-
Uses of Message.TransientFlag in org.jgroups.util
Methods in org.jgroups.util with parameters of type Message.TransientFlag Modifier and Type Method Description static boolean
Util. isTransientFlagSet(short flags, Message.TransientFlag flag)
-