QueueIncomingUnreliableWarning

Options
dbomb7
edited November 2011 in DotNet
My app stops receiving events from my PhotonPeer listener whenever the QueueIncomingUnreliableWarning event is raised. I can raise the WarningSize really high but there always eventually comes a point when the QueuedIncomingCommands increases above the warning size. Is there a way I can clear out the queued commands so that I can get around this warning?

Comments

  • Tobias
    Options
    :P
    The way to get around this warning is to send less. Or to dispatch more often.
    Anything else means you waste bandwidth.

    The warning says you receive a lot of commands but you didn't dispatch (use) them. It's not an error. Nothing's broken. But you should find out why this is happening.