General Event Scheduler Errors. This enum houses all the errors thrown by the Event Scheduler engine that are defined by the event scheduler engine.

Namespace:  GrassValley.Mseries.ScheduleEditor
Assembly:  GrassValley.Mseries.ScheduleEditor (in GrassValley.Mseries.ScheduleEditor.dll) Version: 1.0.0.0

Syntax

C#
public enum SchedulerErrors
Visual Basic (Declaration)
Public Enumeration SchedulerErrors
Visual C++
public enum class SchedulerErrors

Members

Member nameDescription
EVTSRV_MUTEX_FAILED
An Error related to creating or waiting for a mutex has occurred.
EVTSRV_EVENT_BUSY
The event cannot be changed while in the busy state.
EVTSRV_BAD_PARENT
Event and Parent type mismatch
EVTSRV_BAD_STARTTIME
Invalid event start time. The starting timecode could not be found in clip provided.
EVTSRV_BAD_DURATION
The duration of the clip was not long enough to span event.
EVTSRV_BAD_TRIGGER
Invalid trigger provided.
EVTSRV_BAD_ACTION
Invalid action, such as invalid event type provided or an update of event properties attempted to switch event type.
EVTSRV_EMPTY
Channel has no events.
EVTSRV_NO_MORE_EVENTS
Channel has no more events.
EVTSRV_EVENT_NOT_FOUND
The event provided was not found.
EVTSRV_LIST_FULL
InsertEvent: List Out Of Memory
EVTSRV_EVENT_IN_MIN_CUE
Cannot remove an event if its within its minimum cue time
EVTSRV_CHANNEL_ALREADY_OPEN
OpenChannel already called for this channel.
EVTSRV_CHANNEL_NOT_OPEN
The channel was not open. Can happen if the system does not have the protocol set to 'EventScheduler'. It can also happen if the channel is told to shutdown, but is not running.
EVTSRV_SCHEDULE_FAILED
Both main and alt events information was invalid.
EVTSRV_CHANNEL_NOT_LICENSED
Channel not licensed for EventServer. The channel must be licensed before aquiring the schedule editor interface.
EVTSRV_GPIO_LIMIT_REACHED
Too many GPI Output events were contained in the Secondary Events list.
EVTSRV_GPIO_INVALID_INPUT
An invalid GPI Output paramater was passed.

See Also