Package org.apache.cassandra.gms
Class GossipDigestAck2VerbHandler
- java.lang.Object
-
- org.apache.cassandra.gms.GossipVerbHandler<GossipDigestAck2>
-
- org.apache.cassandra.gms.GossipDigestAck2VerbHandler
-
- All Implemented Interfaces:
IVerbHandler<GossipDigestAck2>
public class GossipDigestAck2VerbHandler extends GossipVerbHandler<GossipDigestAck2>
-
-
Field Summary
Fields Modifier and Type Field Description static GossipDigestAck2VerbHandler
instance
-
Constructor Summary
Constructors Constructor Description GossipDigestAck2VerbHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doVerb(Message<GossipDigestAck2> message)
This method delivers a message to the implementing class (if the implementing class was registered by a call to MessagingService.registerVerbHandlers).
-
-
-
Field Detail
-
instance
public static final GossipDigestAck2VerbHandler instance
-
-
Method Detail
-
doVerb
public void doVerb(Message<GossipDigestAck2> message)
Description copied from interface:IVerbHandler
This method delivers a message to the implementing class (if the implementing class was registered by a call to MessagingService.registerVerbHandlers). Note that the caller should not be holding any locks when calling this method because the implementation may be synchronized.- Specified by:
doVerb
in interfaceIVerbHandler<GossipDigestAck2>
- Overrides:
doVerb
in classGossipVerbHandler<GossipDigestAck2>
- Parameters:
message
- - incoming message that needs handling.
-
-