Contents

CFNetServiceMonitorScheduleWithRunLoop(_:_:_:)

Schedules a CFNetServiceMonitor on a run loop.

Declaration

func CFNetServiceMonitorScheduleWithRunLoop(_ monitor: CFNetServiceMonitor, _ runLoop: CFRunLoop, _ runLoopMode: CFString)

Parameters

  • runLoop:

    The run loop on which the monitor is to be scheduled; cannot be NULL.

  • runLoopMode:

    The mode on which to schedule the monitor; cannot be NULL.

Discussion

Schedules the specified monitor on a run loop, which places the monitor in asynchronous mode. The caller is responsible for ensuring that at least one of the run loops on which the monitor is scheduled is being run.

Special Considerations

This function is thread safe.

See Also

Network Services