aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/RxLibrary/GRXBufferedPipe.h
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2015-07-16 21:12:56 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2015-07-17 12:20:08 -0700
commita38baaec9c30d7a765d7afd2f83d0a109dbdbec8 (patch)
treecec760c928590f527d9dbe1fa5d4a8b5080cfbec /src/objective-c/RxLibrary/GRXBufferedPipe.h
parent739c99879a2c5feae841bc96c706ca20051fa2d2 (diff)
Subclass GRXWriter instead of conforming to protocol
Diffstat (limited to 'src/objective-c/RxLibrary/GRXBufferedPipe.h')
-rw-r--r--src/objective-c/RxLibrary/GRXBufferedPipe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/RxLibrary/GRXBufferedPipe.h b/src/objective-c/RxLibrary/GRXBufferedPipe.h
index 5e876a73bf..b6296e1ed7 100644
--- a/src/objective-c/RxLibrary/GRXBufferedPipe.h
+++ b/src/objective-c/RxLibrary/GRXBufferedPipe.h
@@ -51,7 +51,7 @@
// pipe will keep buffering all data written to it, your application could run out of memory and
// crash. If you want to react to flow control signals to prevent that, instead of using this class
// you can implement an object that conforms to GRXWriter.
-@interface GRXBufferedPipe : NSObject<GRXWriteable, GRXWriter>
+@interface GRXBufferedPipe : GRXWriter<GRXWriteable>
// Convenience constructor.
+ (instancetype)pipe;