Skip to content

Instantly share code, notes, and snippets.

@matzew
Created August 22, 2012 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matzew/3426019 to your computer and use it in GitHub Desktop.
Save matzew/3426019 to your computer and use it in GitHub Desktop.
properties on pipe object
/**
* AGPipe represents a server connection. An object of this class is responsible to
* communicate with the server and perfoms read/write operations.
*/
@protocol AGPipe <NSObject>
/**
* Returns the type of the underlying 'pipe implementation'
*/
@property (nonatomic, readonly) NSString* type;
/**
* Returns the url string of the underlying 'pipe implementation'
*/
@property (nonatomic, readonly) NSString* url;
...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment