process abstract method

void process(
  1. dynamic context
)

Performs execution of ready processing tree

Input data needed by tree should be passed in context argument. Result of execution should be also stored in context if there is any result. Note: This function might throw exception if user functions build into tree throws exception. If processing tree is not malformed then processing tree library will not throw exception from this function.

Implementation

void process(dynamic context);