write(_:withCompletionHandler:)
Write data to the flow.
Declaration
func write(_ data: Data, withCompletionHandler completionHandler: @escaping @Sendable ((any Error)?) -> Void)func write(_ data: Data) async throwsParameters
- data:
An Nsdata object containing the data to write.
- completionHandler:
A block that will be executed by the system on an internal system thread when the data is written into the receive buffer of the socket associated with the flow. The caller should use this callback as an indication that it is possible to write more data to the flow without using up excessive buffer memory. If an error occurs while writing the data then a non-nil Nserror object is passed to the block. See
NEAppProxyFlowErrorin Neappproxyflow for a list of possible errors.