Class PaxosPrepareRefresh.RequestHandler
- java.lang.Object
-
- org.apache.cassandra.service.paxos.PaxosPrepareRefresh.RequestHandler
-
- All Implemented Interfaces:
IVerbHandler<org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Request>
- Enclosing class:
- PaxosPrepareRefresh
public static class PaxosPrepareRefresh.RequestHandler extends java.lang.Object implements IVerbHandler<org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Request>
-
-
Constructor Summary
Constructors Constructor Description RequestHandler()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doVerb(Message<org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Request> message)
This method delivers a message to the implementing class (if the implementing class was registered by a call to MessagingService.registerVerbHandlers).static org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Response
execute(org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Request request, InetAddressAndPort from)
-
-
-
Method Detail
-
doVerb
public void doVerb(Message<org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Request> 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<org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Request>
- Parameters:
message
- - incoming message that needs handling.
-
execute
public static org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Response execute(org.apache.cassandra.service.paxos.PaxosPrepareRefresh.Request request, InetAddressAndPort from)
-
-