A MIDI Library for .NET

Clock.Schedule(Message) Method

Schedules a single message based on its beatTime.

public void Schedule(
   Message message
);

Parameters

message
The message to schedule.

Remarks

This method schedules a message to be sent at the time indicated in the message's Time property. It may be called at any time, whether the clock is running or not. The message will not be sent until the clock progresses to the specified time. (If the clock is never started, or is paused before that time and not re-started, then the message will never be sent.)

If a message is scheduled for a time that has already passed, then the scheduler will send the message at the first opportunity.

See Also

Clock Class | Midi Namespace | Clock.Schedule Overload List