corda / net.corda.finance.flows / TwoPartyTradeFlow / Seller

Seller

class Seller : FlowLogic<SignedTransaction>

Types

AWAITING_PROPOSAL

object AWAITING_PROPOSAL : Step

VERIFYING_AND_SIGNING

object VERIFYING_AND_SIGNING : Step

Constructors

<init>

Seller(otherSideSession: FlowSession, assetToSell: StateAndRef<OwnableState>, price: Amount<Currency>, myParty: PartyAndCertificate, progressTracker: ProgressTracker = Seller.tracker())

Properties

progressTracker

Override this to provide a ProgressTracker. If one is provided and stepped, the framework will do something helpful with the progress reports e.g record to the audit service. If this flow is invoked as a subflow of another, then the tracker will be made a child of the current step in the parent. If it's null, this flow doesn't track progress.

open val progressTracker: ProgressTracker

Functions

call

This is where you fill out your business logic.

open fun call(): SignedTransaction

Companion Object Functions

tracker

fun tracker(): ProgressTracker