getDataWedgeStatus method
Retrieves the current DataWedge service status.
The result is delivered as a command result event on the events stream.
Implementation
Future<void> getDataWedgeStatus({
String? commandTag,
bool requestResult = true,
}) {
return _sendQueryCommand(
command: DataWedgeApi.getDataWedgeStatus,
commandTag: commandTag ?? 'GET_DATAWEDGE_STATUS',
requestResult: requestResult,
);
}