/// <summary> /// Pauses processing on the local or remote host /// </summary> /// <param name="context">Indicates whether the event came from local or remote host</param> public void Pause(object context) { if (context == null && _localTpe != null) { _localTpe.Pause(); } if (context != null && _remoteTpe != null) { _remoteTpe.Pause(_engineId); } Status(context); }