Package org.apache.cassandra.service
Class CacheService.CounterCacheSerializer
- java.lang.Object
-
- org.apache.cassandra.service.CacheService.CounterCacheSerializer
-
- All Implemented Interfaces:
AutoSavingCache.CacheSerializer<CounterCacheKey,ClockAndCount>
- Enclosing class:
- CacheService
public static class CacheService.CounterCacheSerializer extends java.lang.Object implements AutoSavingCache.CacheSerializer<CounterCacheKey,ClockAndCount>
-
-
Constructor Summary
Constructors Constructor Description CounterCacheSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.Future<Pair<CounterCacheKey,ClockAndCount>>
deserialize(DataInputPlus in, ColumnFamilyStore cfs)
void
serialize(CounterCacheKey key, DataOutputPlus out, ColumnFamilyStore cfs)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.cassandra.cache.AutoSavingCache.CacheSerializer
cleanupAfterDeserialize
-
-
-
-
Method Detail
-
serialize
public void serialize(CounterCacheKey key, DataOutputPlus out, ColumnFamilyStore cfs) throws java.io.IOException
- Specified by:
serialize
in interfaceAutoSavingCache.CacheSerializer<CounterCacheKey,ClockAndCount>
- Throws:
java.io.IOException
-
deserialize
public java.util.concurrent.Future<Pair<CounterCacheKey,ClockAndCount>> deserialize(DataInputPlus in, ColumnFamilyStore cfs) throws java.io.IOException
- Specified by:
deserialize
in interfaceAutoSavingCache.CacheSerializer<CounterCacheKey,ClockAndCount>
- Throws:
java.io.IOException
-
-