es_unmute_path_events(_:_:_:_:_:)
Restores event delivery of a subset of events from a previously-muted path.
Declaration
func es_unmute_path_events(_ client: OpaquePointer, _ path: UnsafePointer<CChar>, _ type: es_mute_path_type_t, _ events: UnsafePointer<es_event_type_t>, _ event_count: Int) -> es_return_tParameters
- client:
A previously-muted client. If the call succeeds, this client begins to receive events that match the types in
eventsfrom executables whose paths matchpath. - path:
The path to unmute. The client resumes receiving events from executables whose paths match this string.
- type:
The type of the
pathargument, either a prefix or a literal path. - events:
An array of event types to unmute.
- event_count:
The number of members in the
eventsarray.
Return Value
A value that indicates whether the unmute request succeeded or failed with an error.
Discussion
To unmute all events from a path, use es_unmute_path(_:_:_:).