Click or drag to resize

StreamingMode Enumeration

Mode to stream traces.

Namespace: RAYLASE.PDA.API
Assembly: RAYLASE.PDA.API.Protos (in RAYLASE.PDA.API.Protos.dll) Version: 1.1.1
Syntax
C#
public enum StreamingMode
Members
Member nameDescription
SmNone Default mode, just send the data to the client stream.
SmFile Save all received traces to file(s).
SmTrigger Save a range of trace data to file if the client triggers it.
SmConditionToFile Loads a DLL implementing the ConditionAPI and checks for condition. If true, the current ring buffer will be saved as trace file.
SmConditionToStream Loads a DLL implementing the ConditionAPI and checks for condition. If true, the current ring buffer will be streamed.
SmConditionToFileAndStream Loads a DLL implementing the ConditionAPI and checks for condition. If true, the current ring buffer will be saved as trace file and streamed.
See Also