com.r3corda.protocols / TwoPartyDealProtocol / Floater

Floater

class Floater : Primary

One side of the fixing protocol for an interest rate swap, but could easily be generalised furher.

As per the Fixer, do not infer too much from this class name in terms of business roles. This is just the "side" of the protocol run by the party with the floating leg as a way of deciding who does what in the protocol.





Constructors

<init> Floater(otherParty: Party, payload: FixingSession, progressTracker: ProgressTracker = Primary.tracker())

One side of the fixing protocol for an interest rate swap, but could easily be generalised furher.

Properties

myKeyPair val myKeyPair: KeyPair
notaryNode val notaryNode: NodeInfo
otherParty val otherParty: Party
payload val payload: FixingSession
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.

Inherited Functions

call open fun call(): SignedTransaction

This is where you fill out your business logic.

computeOurSignature open fun computeOurSignature(partialTX: SignedTransaction): WithKey
getCounterpartyMarker open fun getCounterpartyMarker(party: Party): Class<*>

Return the marker Class which party has used to register the counterparty protocol that is to execute on the other side. The default implementation returns the class object of this ProtocolLogic, but any Class instance will do as long as the other side registers with it.

getPartialTransaction fun getPartialTransaction(): UntrustworthyData<SignedTransaction>
verifyPartialTransaction fun verifyPartialTransaction(untrustedPartialTX: UntrustworthyData<SignedTransaction>): SignedTransaction