diff options
author | Julien Boeuf <jboeuf@google.com> | 2015-05-21 10:06:10 -0700 |
---|---|---|
committer | Julien Boeuf <jboeuf@google.com> | 2015-05-21 10:06:10 -0700 |
commit | bd024536e5dbc0f2a20210a6ee8438bcf393793c (patch) | |
tree | db34b07ee87275dec8db8a7c0669383fc0d40128 /src/objective-c/RxLibrary/GRXWriteable.m | |
parent | 83b029726b3b110a79e7432427e1050371b26dce (diff) | |
parent | 72b0f3a99e82d58778846278cde2770ffdadc278 (diff) |
Merge branch 'master' of github.com:grpc/grpc into server_auth_context
Diffstat (limited to 'src/objective-c/RxLibrary/GRXWriteable.m')
-rw-r--r-- | src/objective-c/RxLibrary/GRXWriteable.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objective-c/RxLibrary/GRXWriteable.m b/src/objective-c/RxLibrary/GRXWriteable.m index 7000a078d1..63f7c3e7f3 100644 --- a/src/objective-c/RxLibrary/GRXWriteable.m +++ b/src/objective-c/RxLibrary/GRXWriteable.m @@ -76,13 +76,13 @@ return self; } -- (void)didReceiveValue:(id)value { +- (void)writeValue:(id)value { if (_valueHandler) { _valueHandler(value); } } -- (void)didFinishWithError:(NSError *)errorOrNil { +- (void)writesFinishedWithError:(NSError *)errorOrNil { if (_completionHandler) { _completionHandler(errorOrNil); } |