Photon Server API Documentation v5.0RC1

Static Public Attributes | List of all members
Photon.Hive.Plugin.CallStatus Class Reference

Status of the ICallInfo argument passed to plugin callbacks. More...

Static Public Attributes

const byte New = 0
 The ICallInfo argument was not processed nor deferred. More...
 
const byte Paused = 1
 
const byte Deferred = 2
 The ICallInfo argument is deferred (i.e. Defer method was called). More...
 
const byte Succeeded = 3
 The ICallInfo argument was successfully processed (i.e. Continue method was called). More...
 
const byte Failed = 4
 The ICallInfo argument "has failed" (i.e. Fail method was called). More...
 
const byte Cancelled = 5
 The ICallInfo argument was canceled (i.e. Cancel method was called). More...
 
const byte Canceled = Cancelled
 

Detailed Description

Status of the ICallInfo argument passed to plugin callbacks.

Member Data Documentation

◆ Canceled

const byte Photon.Hive.Plugin.CallStatus.Canceled = Cancelled
static

◆ Cancelled

const byte Photon.Hive.Plugin.CallStatus.Cancelled = 5
static

The ICallInfo argument was canceled (i.e. Cancel method was called).

◆ Deferred

const byte Photon.Hive.Plugin.CallStatus.Deferred = 2
static

The ICallInfo argument is deferred (i.e. Defer method was called).

◆ Failed

const byte Photon.Hive.Plugin.CallStatus.Failed = 4
static

The ICallInfo argument "has failed" (i.e. Fail method was called).

◆ New

const byte Photon.Hive.Plugin.CallStatus.New = 0
static

The ICallInfo argument was not processed nor deferred.

◆ Paused

const byte Photon.Hive.Plugin.CallStatus.Paused = 1
static

◆ Succeeded

const byte Photon.Hive.Plugin.CallStatus.Succeeded = 3
static

The ICallInfo argument was successfully processed (i.e. Continue method was called).