Mark Frohnmayer wrote:
> What kind of data are you streaming? If it's unguaranteed, you can
> either send it as events, as RPCs, or you can tag it on to each packet
> directly in a connection's overloaded writePacket/readPacket calls.
> If it's a guaranteed data stream, I'd recommend using either events or
> RPCs of ByteBuffers (easiest).
>
> You would want to derive your own connection class from either
> EventConnection or GhostConnection and then add the RPCs or the
> appropriate read/write packet there.
>
> - Mark
unguaranteed audio thanks for the response.
|