Package org.apache.cassandra.batchlog
Class BatchStoreVerbHandler
- java.lang.Object
-
- org.apache.cassandra.batchlog.BatchStoreVerbHandler
-
- All Implemented Interfaces:
IVerbHandler<Batch>
public final class BatchStoreVerbHandler extends java.lang.Object implements IVerbHandler<Batch>
-
-
Field Summary
Fields Modifier and Type Field Description static BatchStoreVerbHandlerinstance
-
Constructor Summary
Constructors Constructor Description BatchStoreVerbHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoVerb(Message<Batch> 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 BatchStoreVerbHandler instance
-
-
Method Detail
-
doVerb
public void doVerb(Message<Batch> message)
Description copied from interface:IVerbHandlerThis 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:
doVerbin interfaceIVerbHandler<Batch>- Parameters:
message- - incoming message that needs handling.
-
-