This enumeration contains the codes assigned to the events being exposed to the service instance.

C# |
public enum InterruptEventCode

Member | Description |
---|---|
TaskSuspended | Event code indicating that the service will be interrupted because the task being processed is being suspended. Any data or exception returned from the interrupted operation will be handled in the normal manner by the middleware. |
TaskKilled | Event code indicating that the service will be interrupted because the task being processed is being killed. Any data returned from the interrupted operation will be handled in the normal manner by the middleware. |
SessionSuspended | Event code indicating that the service will be interrupted because the Task is being suspended. (**DEPRECATED** in Symphony 4.0) |
SessionKilled | Event code indicating that the service will be interrupted because the Task is being killed. (**DEPRECATED** in Symphony 4.0) |
None | Event code indicating that no interrupt event has occurred. |

These event codes can be checked within the service instance by the developer on each invocation of the service.