Table of Contents
CallbackQueueMode Enumeration

Specifies how the incoming callback requests are queued if the current request is in progress.

Namespace: EO.Web
Assembly: EO.Web (in EO.Web.dll)

Syntax
 public enum CallbackQueueMode
Members
Member Name Description
KeepAll All incoming callback requests are queued and executed in a first-in-first-out manner.
KeepLast When there are multiple incoming callback requests, only the last one is kept. Other requests before the last one are discarded.
DiscardAll All incoming callback requests are discarded.
See Also