Package org.apache.cassandra.streaming
Class StreamSummary
- java.lang.Object
-
- org.apache.cassandra.streaming.StreamSummary
-
- All Implemented Interfaces:
java.io.Serializable
public class StreamSummary extends java.lang.Object implements java.io.Serializable
Summary of streaming.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
StreamSummary.StreamSummarySerializer
-
Field Summary
Fields Modifier and Type Field Description int
files
Number of files to transfer.static IVersionedSerializer<StreamSummary>
serializer
TableId
tableId
long
totalSize
-
Constructor Summary
Constructors Constructor Description StreamSummary(TableId tableId, int files, long totalSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
serializer
public static final IVersionedSerializer<StreamSummary> serializer
-
tableId
public final TableId tableId
-
files
public final int files
Number of files to transfer. Can be 0 if nothing to transfer for some streaming request.
-
totalSize
public final long totalSize
-
-
Constructor Detail
-
StreamSummary
public StreamSummary(TableId tableId, int files, long totalSize)
-
-