Package org.apache.cassandra.gms
Class GossipDigestAckVerbHandler
- java.lang.Object
-
- org.apache.cassandra.gms.GossipVerbHandler<GossipDigestAck>
-
- org.apache.cassandra.gms.GossipDigestAckVerbHandler
-
- All Implemented Interfaces:
IVerbHandler<GossipDigestAck>
public class GossipDigestAckVerbHandler extends GossipVerbHandler<GossipDigestAck>
-
-
Field Summary
Fields Modifier and Type Field Description static GossipDigestAckVerbHandler
instance
-
Constructor Summary
Constructors Constructor Description GossipDigestAckVerbHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doVerb(Message<GossipDigestAck> 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 GossipDigestAckVerbHandler instance
-
-
Method Detail
-
doVerb
public void doVerb(Message<GossipDigestAck> 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<GossipDigestAck>
- Overrides:
doVerb
in classGossipVerbHandler<GossipDigestAck>
- Parameters:
message
- - incoming message that needs handling.
-
-