CFWriteStreamClientCallBack
Callback invoked when certain types of activity takes place on a writable stream.
Declaration
typealias CFWriteStreamClientCallBack = (CFWriteStream?, CFStreamEventType, UnsafeMutableRawPointer?) -> VoidParameters
- stream:
The stream that experienced the event
eventType. - eventType:
The event that caused the callback to be called. The possible events are listed in Cfstreameventtype.
- clientCallBackInfo:
The
infomember of the Cfstreamclientcontext structure that was used when setting the client forstream.
Discussion
This callback is called only for the events requested when setting the client with CFWriteStreamSetClient(_:_:_:_:).