Called by a StreamBaseMonitor object when it has received a Snapshot.

The snapshot object must only be used within the invocation of this method, as it will cease to be valid as soon as SnapshotReceived returns. For example, an implementation of this interface should not pass the snapshot object to another thread for asynchronous processing, because the snapshot may have become invalid by the time that thread receives the snapshot.

If you need to store a snapshot for later processing, you may Clone() individual objects in the snapshot (ThreadInfo, SystemInfo, etc.)

Namespace: StreamBase.SB.Monitor
Assembly: StreamBase.SB.Monitor (in StreamBase.SB.Monitor.dll) Version: 7.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
void SnapshotReceived(
	Snapshot snap
)
Sub SnapshotReceived ( _
	snap As Snapshot _
)
void SnapshotReceived(
	Snapshot^ snap
)

Parameters

snap
Snapshot
The Snapshot just received from the StreamBase server.

See Also