class Acceptor : Acceptor<Party>
<init> |
Acceptor(otherSide: Party, progressTracker: ProgressTracker = tracker()) |
progressTracker |
val progressTracker: ProgressTracker Override this to provide a ProgressTracker. If one is provided and stepped, the framework will do something helpful with the progress reports. If this protocol is invoked as a sub-protocol of another, then the tracker will be made a child of the current step in the parent. If its null, this protocol doesnt track progress. |
otherSide |
val otherSide: Party |
verifyProposal |
fun verifyProposal(maybeProposal: UntrustworthyData<Proposal<Party>>): Proposal<Party> Check the notary change proposal. |
call |
open fun call(): Unit This is where you fill out your business logic. |