Skip to content
Snippets Groups Projects
Commit 22a7cdff authored by Michael Lumish's avatar Michael Lumish
Browse files

Merge pull request #2108 from jcanizales/disallow-started-writers

Disallow started request writers on GRPCCall init
parents f1a49557 6bbfcc3f
No related branches found
No related tags found
No related merge requests found
...@@ -100,7 +100,9 @@ NSString * const kGRPCStatusMetadataKey = @"io.grpc.StatusMetadataKey"; ...@@ -100,7 +100,9 @@ NSString * const kGRPCStatusMetadataKey = @"io.grpc.StatusMetadataKey";
if (!host || !method) { if (!host || !method) {
[NSException raise:NSInvalidArgumentException format:@"Neither host nor method can be nil."]; [NSException raise:NSInvalidArgumentException format:@"Neither host nor method can be nil."];
} }
// TODO(jcanizales): Throw if the requestWriter was already started. if (requestWriter.state != GRXWriterStateNotStarted) {
[NSException raise:NSInvalidArgumentException format:@"The requests writer can't be already started."];
}
if ((self = [super init])) { if ((self = [super init])) {
static dispatch_once_t initialization; static dispatch_once_t initialization;
dispatch_once(&initialization, ^{ dispatch_once(&initialization, ^{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment