Home Forums Support very slow comm if sending large data frame Reply To: very slow comm if sending large data frame

#1048
Anonymous
Inactive

Looks like TCP should stream, following AdvancedSend.cs example.
Here’s my plan:

Windows STREAMING SENDER:
connectionToUse = TCPConnection.GetConnection(connectionInfo);
connectionToUse.SendObject(“ArrayInt”, toSendObject);

iPAD LISTENER:
NetworkComms.AppendGlobalIncomingPacketHandler<int[]>(“ArrayInt”,…
TCPConnection.StartListening
(packet handler processes received frame)

Thanks!