> was wondering if I could send one way messages that do not require a
> response?
Just don't do anything with the response when you send it- ignoring it
seems to work ok.
-gus
--
August 'Gus' Mueller
Flying Meat Inc.
http://flyingmeat.com/
> was wondering if I could send one way messages that do not require a
> response?
Use the BLIPRequest.noReply property:
/** Does this request not need a response?
This property can only be set before sending the request. */
@property BOOL noReply;
—Jens
> Just don't do anything with the response when you send it- ignoring it
> seems to work ok.
That'll work, but it incurs the overhead of having an empty response
sent back. Which isn't much, but it's still better to use the noReply
mode when that's your intent.
—Jens