Click or drag to resize

ISequenceManager Interface

This interface provides methods for discovering camera-sequences defined in the configuration (SequenceSeeds) and camera-sequences currently being displayed in image panes or on analog monitors (Sequences) and methods for controlling the display of sequences.

Namespace: Bosch.Vms.SDK
Assembly: Bosch.Vms.SDK (in Bosch.Vms.SDK.dll) Version: 1.9.0.0
Syntax
C#
public interface ISequenceManager

The ISequenceManager type exposes the following members.

Methods
 NameDescription
Public methodGetSeed Gets the SequenceSeed from which the given sequence was created.
Public methodGetSeedLogicalNumber Returns the logical number of the SequenceSeed.
Public methodGetSeedName Returns the name of the SequenceSeed.
Public methodGetSequenceById Get all sequences currently being displayed which were created from the SequenceSeed with the given seed id.
Public methodGetSequenceByLogicalNumber Get all sequences currently being displayed which were created from the SequenceSeed with the given logical number.
Public methodGetSequenceByName Get all sequences currently being displayed which were created from the SequenceSeed with the given name.
Public methodGetSequenceSeedById Gets a handle for a SequenceSeed with the given id.
Public methodGetSequenceSeedByLogicalNumber Gets a handle for a SequenceSeed with the given logical number.
Public methodGetSequenceSeedByName Gets a handle for a SequenceSeed with the given name.
Public methodPause Pauses a running sequence. Has no effect if the sequence was already paused before.
Public methodPlayBackward Plays the sequence backwards, i.e. decreasing step numbers.
Public methodPlayForward Plays the sequence forward, i.e. increasing step numbers.
Public methodStepBackward Single step backwards
Public methodStepForward Single step forward
Public methodUnload Stops and unloads the given sequence. The image panes or analog monitors which were controlled by the sequence till now continue to show the cameras from the last executed step of the sequence, but their content is not controlled by the sequence any longer.
Top
Remarks
This interface does not provide methods for displaying camera-sequences in image panes or on analog monitors. These methods are rather part of the interfaces IContentManager and IDecoderManager. These interfaces provide also methods for getting a Sequence handle for a camera-sequence currently being displayed in a given image pane respectively analog monitor.
See Also