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.TransientFlagMessage.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 MessageBaseMessage. clearFlag(Message.TransientFlag... flags)MessageMessage. clearFlag(Message.TransientFlag... flags)Removes a number of transient flags from the message.booleanBaseMessage. isFlagSet(Message.TransientFlag flag)booleanMessage. isFlagSet(Message.TransientFlag flag)Returns true if a transient flag is set, false otherwiseMessageBaseMessage. setFlag(Message.TransientFlag... flags)Same asBaseMessage.setFlag(Flag...)except that transient flags are not marshalledMessageMessage. setFlag(Message.TransientFlag... flags)Sets one or more transient flags (xor-ing).booleanBaseMessage. setFlagIfAbsent(Message.TransientFlag flag)Atomically checks if a given flag is set and - if not - sets it.booleanMessage. 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 RequestOptionsRequestOptions. clearTransientFlags(Message.TransientFlag... flags)RequestOptionsRequestOptions. setTransientFlags(Message.TransientFlag... flags)RequestOptionsRequestOptions. transientFlags(Message.TransientFlag... flags)booleanRequestOptions. 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 booleanUtil. isTransientFlagSet(short flags, Message.TransientFlag flag)
-