IPWorks WebSockets 2020 iOS Edition

Questions / Feedback?

onDataIn (event)

Fired when data is received.

Syntax

- (void)onDataIn:(int)dataFormat :(NSData*)text :(BOOL)EOM;
func onDataIn(_ dataFormat: Int32, _ text: Data, _ EOM: Bool)

Remarks

The DataIn event provides the data received from the remote host.

The incoming data is provided through the Text parameter.

The DataFormat parameter identifies the encoding (if any) of the data. Possible value are:

1 The data is UTF-8 encoded.
2 The data is binary and has no encoding.
10 The data is a pong packet.

The EOM parameter stands for End Of Message. By default the class will fire the DataIn event as data is received. Larger messages will be fragmented and will cause the event to fire multiple times. When EOM is true within the event this indicates the current fragment is also the final fragment of the message. The component may also be configured to buffer the message internally until the complete message is received. To enable this set BufferMessage to true.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks WebSockets 2020 iOS Edition - Version 20.0 [Build 8155]