Uses of Class
org.eclipse.jgit.internal.ketch.Proposal
-
Packages that use Proposal Package Description org.eclipse.jgit.internal.ketch Distributed consensus system built on Git. -
-
Uses of Proposal in org.eclipse.jgit.internal.ketch
Fields in org.eclipse.jgit.internal.ketch with type parameters of type Proposal Modifier and Type Field Description private java.util.List<Proposal>
KetchLeader. queued
Pending proposals accepted into the queue in FIFO order.private java.util.List<Proposal>
ProposalRound. todo
Methods in org.eclipse.jgit.internal.ketch that return Proposal Modifier and Type Method Description Proposal
Proposal. addProposedTimestamp(ProposedTimestamp ts)
Request the proposal to wait for the affected timestamps to resolve.Proposal
Proposal. setAuthor(PersonIdent who)
Set the author for the proposal.Proposal
Proposal. setMessage(java.lang.String msg)
Set the message to appear in the commit log of the RefTree.Proposal
Proposal. setPushCertificate(PushCertificate cert)
Set the push certificate signing the references.Methods in org.eclipse.jgit.internal.ketch with parameters of type Proposal Modifier and Type Method Description private static boolean
ProposalRound. canCombine(Proposal a, Proposal b)
private java.lang.String
ProposalRound. message(Proposal p)
void
KetchLeader. queueProposal(Proposal proposal)
Queue a reference update proposal for consensus.private void
KetchPreReceive. waitForPropose(Proposal proposal, ProgressSpinner spinner)
private void
KetchPreReceive. waitForQueue(Proposal proposal, ProgressSpinner spinner)
Method parameters in org.eclipse.jgit.internal.ketch with type arguments of type Proposal Modifier and Type Method Description private static boolean
ProposalRound. canCombine(java.util.List<Proposal> todo)
Constructor parameters in org.eclipse.jgit.internal.ketch with type arguments of type Proposal Constructor Description ProposalRound(KetchLeader leader, LogIndex head, java.util.List<Proposal> todo, RefTree tree)
-