[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

This class acts as a buckets for sorting schedule service callbacks that are scheduled to occur at the same time. Each buckets constists of net.esper.schedule.ScheduleSlot slots that callbacks are assigned to.

At the time of timer evaluation, callbacks that become triggerable are ordered using the bucket as the first-level order, and slot as the second-level order.

Each statement at statement creation time allocates a buckets, and each timer within the statement allocates a slot. Thus statements that depend on other statements (such as for insert-into), and timers within their statement (such as time window or output rate limit timers) behave deterministically.

Namespace: net.esper.schedule
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Class ScheduleBucket
C#
public class ScheduleBucket
Visual C++
public ref class ScheduleBucket

Inheritance Hierarchy

System.Object
  net.esper.schedule.ScheduleBucket

See Also