interface SchedulableState : ContractState
contract |
abstract val contract: Contract An instance of the contract class that will verify this state. |
encumbrance |
open val encumbrance: Int? All contract states may be |
participants |
abstract val participants: List<PublicKey> A |
nextScheduledActivity |
abstract fun nextScheduledActivity(thisStateRef: StateRef, protocolLogicRefFactory: ProtocolLogicRefFactory): ScheduledActivity? Indicate whether there is some activity to be performed at some future point in time with respect to this ContractState, what that activity is and at what point in time it should be initiated. This can be used to implement deadlines for payment or processing of financial instruments according to a schedule. |
hash |
fun ContractState.hash(): SecureHash Returns the SHA-256 hash of the serialised contents of this state (not cached) |
State |
data class State : FixableDealState, SchedulableState The state class contains the 4 major data classes. |