Skip to content

Commit

Permalink
svc: add OncRpcSvcBuilder#withoutStartTLS method
Browse files Browse the repository at this point in the history
provide a way to explicitly disable startTLS option.

Acked-by: Paul Millar
Target: master
  • Loading branch information
kofemann committed May 6, 2019
1 parent 23a712d commit 480bfb8
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ public OncRpcSvcBuilder withStartTLS() {
return this;
}

@Beta
public OncRpcSvcBuilder withoutStartTLS() {
_startTLS = false;
return this;
}

public OncRpcSvcBuilder withoutAutoPublish() {
_autoPublish = false;
return this;
Expand Down

0 comments on commit 480bfb8

Please sign in to comment.