> When I send a RPY msg that is larger than default buffer size of
> Channel (4K), it looks like receiving side gets stuck after receiving
> 4K bytes (3 beep frames). Following is how I'm trying to receive the msg:
>
> // note : ds is InputDataStream
>
> while(true) {
> BufferSegment b = ds.waitForNextSegment();
> if (b == null)
> break;
> //
> // process b
> //
> }
>
> I use the same method to receive MSG w/o any problems.
Are you doing this in the receiveRPY callback?
--Huston
|