|
From: Brad H. <Bra...@gb...> - 2006-09-23 09:26:25
|
> I wouldn't mind if manual intervention was required - how about a way
of
> telling the engine (without a logout) that a particular message number
> is never going to come? For example, would a method on session to
bump
> the expected sequence number up and forget about past resend requests
> sent work?=20
Ignoring possible synchronisation and error handling issues, this seems
to do the trick:
public void skipIncomingMessage() throws Exception {
state.incrNextTargetMsgSeqNum();
nextQueued();
}
|