Action

interface Action<T> : Serializable

Parameters

<T>

The type which describes the concentration of a molecule The interface of an action. Every action must implement this interface.

Functions

Link copied to clipboard
abstract fun cloneAction(node: Node<T>, reaction: Reaction<T>): Action<T>
This method allows to clone this action on a new node.
Link copied to clipboard
abstract fun execute()
Effectively executes this action.
Link copied to clipboard
abstract fun getContext(): Context
Link copied to clipboard
@Nonnull
abstract fun getOutboundDependencies(): ListSet<out Dependency>