IIndependentAdapterManagerOnStatusMessage Method

Raises the StatusMessage event and sends this data to the Logger.

Definition

Namespace: Gemstone.Timeseries.Adapters
Assembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.128 -- Release Build+e2476c52e94864f123f37e60764c948e49eb89eb
void OnStatusMessage(
	MessageLevel level,
	string status,
	string eventName = null,
	MessageFlags flags = MessageFlags.None
)

Parameters

level  MessageLevel
The MessageLevel to assign to this message
status  String
New status message.
eventName  String  (Optional)
A fixed string to classify this event; defaults to null.
flags  MessageFlags  (Optional)
MessageFlags to use, if any; defaults to None.

Remarks

should be a constant string value associated with what type of message is being generated. In general, there should only be a few dozen distinct event names per class. Exceeding this threshold will cause the EventName to be replaced with a general warning that a usage issue has occurred.

See Also