X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=api%2Fapi.go;h=3089f24759aef932e1fbf7cf70d72a1829db6a4c;hb=c0da1f2999a6b08d003c0fed1a23e1ca60dd1571;hp=93f2b4210c920bfea91a4f6bbb1a2b7bdb3d7fc8;hpb=24f179dbb9534ed7c05bee2a80f18b55443706ab;p=govpp.git diff --git a/api/api.go b/api/api.go index 93f2b42..3089f24 100644 --- a/api/api.go +++ b/api/api.go @@ -1,4 +1,4 @@ -// Copyright (c) 2020 Cisco and/or its affiliates. +// Copyright (c) 2021 Cisco and/or its affiliates. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -28,7 +28,8 @@ type Connection interface { NewStream(ctx context.Context, options ...StreamOption) (Stream, error) // Invoke can be used for a simple request-reply RPC. - // It creates stream and calls SendMsg with req and RecvMsg with reply. + // It creates stream and calls SendMsg with req and RecvMsg which returns + // reply. Invoke(ctx context.Context, req Message, reply Message) error }