Uses of Class
org.apache.cassandra.service.paxos.Commit
-
Packages that use Commit Package Description org.apache.cassandra.db org.apache.cassandra.service.paxos -
-
Uses of Commit in org.apache.cassandra.db
Methods in org.apache.cassandra.db with parameters of type Commit Modifier and Type Method Description static void
SystemKeyspace. savePaxosCommit(Commit commit)
static void
SystemKeyspace. savePaxosPromise(Commit promise)
static void
SystemKeyspace. savePaxosProposal(Commit proposal)
-
Uses of Commit in org.apache.cassandra.service.paxos
Fields in org.apache.cassandra.service.paxos declared as Commit Modifier and Type Field Description Commit
PrepareResponse. inProgressCommit
Commit
PrepareCallback. mostRecentCommit
Commit
PrepareResponse. mostRecentCommit
Commit
PrepareCallback. mostRecentInProgressCommit
Methods in org.apache.cassandra.service.paxos that return Commit Modifier and Type Method Description Commit
Commit.CommitSerializer. deserialize(DataInputPlus in, int version)
static Commit
Commit. emptyCommit(DecoratedKey key, TableMetadata metadata)
static Commit
Commit. newPrepare(DecoratedKey key, TableMetadata metadata, java.util.UUID ballot)
static Commit
Commit. newProposal(java.util.UUID ballot, PartitionUpdate update)
Methods in org.apache.cassandra.service.paxos with parameters of type Commit Modifier and Type Method Description static void
PaxosState. commit(Commit proposal)
static PrepareResponse
PrepareVerbHandler. doPrepare(Commit toPrepare)
static java.lang.Boolean
ProposeVerbHandler. doPropose(Commit proposal)
boolean
Commit. isAfter(Commit other)
static PrepareResponse
PaxosState. prepare(Commit toPrepare)
static java.lang.Boolean
PaxosState. propose(Commit proposal)
void
Commit.CommitSerializer. serialize(Commit commit, DataOutputPlus out, int version)
long
Commit.CommitSerializer. serializedSize(Commit commit, int version)
Method parameters in org.apache.cassandra.service.paxos with type arguments of type Commit Modifier and Type Method Description void
CommitVerbHandler. doVerb(Message<Commit> message)
void
PrepareVerbHandler. doVerb(Message<Commit> message)
void
ProposeVerbHandler. doVerb(Message<Commit> message)
Constructors in org.apache.cassandra.service.paxos with parameters of type Commit Constructor Description PaxosState(Commit promised, Commit accepted, Commit mostRecentCommit)
PrepareResponse(boolean promised, Commit inProgressCommit, Commit mostRecentCommit)
-