ScheduledStateRef

data class ScheduledStateRef(val ref: StateRef, val scheduledAt: Instant) : Scheduled

Represents a contract state (unconsumed output) of type LinearState and a point in time that a lifecycle event is expected to take place for that contract state.

This is effectively the input to a scheduler, which wakes up at that point in time and asks the contract state what lifecycle processing needs to take place. e.g. a fixing or a late payment etc.

Constructors

Link copied to clipboard
constructor(ref: StateRef, scheduledAt: Instant)

Properties

Link copied to clipboard
Link copied to clipboard
open override val scheduledAt: Instant