Home › Forums › Support › very slow comm if sending large data frame › Reply To: very slow comm if sending large data frame
August 19, 2013 at 16:31
#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!