BLIP/BLIPWriter.h
author Jens Alfke <jens@mooseyard.com>
Fri Jul 24 14:06:28 2009 -0700 (2009-07-24)
changeset 63 5e4855a592ee
parent 11 29e8b03c05d4
permissions -rw-r--r--
* The BLIPConnection receivedRequest: delegate method now returns BOOL. If the method returns NO (or if the method isn't implemented in the delegate), that means it didn't handle the message at all; an error will be returned to the sender.
* If the connection closes unexpectedly due to an error, then the auto-generated responses to pending requests will contain that error. This makes it easier to display a meaningful error message in the handler for the request.
     1 //
     2 //  BLIPFrameWriter.h
     3 //  MYNetwork
     4 //
     5 //  Created by Jens Alfke on 5/18/08.
     6 //  Copyright 2008 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import "TCPWriter.h"
    10 @class BLIPRequest, BLIPResponse, BLIPMessage;
    11 
    12 
    13 /** INTERNAL class that sends BLIP frames over the socket. */
    14 @interface BLIPWriter : TCPWriter
    15 {
    16     @private
    17     NSMutableArray *_outBox;
    18     UInt32 _numRequestsSent;
    19 }
    20 
    21 - (BOOL) sendRequest: (BLIPRequest*)request response: (BLIPResponse*)response;
    22 - (BOOL) sendMessage: (BLIPMessage*)message;
    23 
    24 @property (readonly) UInt32 numRequestsSent;
    25 
    26 @end