forked from TrueCloudLab/frostfs-api-go
Evgenii Stratonikov
a6e2ab3845
Each of these is not easy to do, so add an exeption for now. Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
29 lines
640 B
Go
29 lines
640 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// CallOption is a messaging session option within Protobuf RPC.
|
|
type CallOption func(*callParameters)
|
|
|
|
type callParameters struct {
|
|
ctx context.Context // nolint:containedctx
|
|
}
|
|
|
|
func defaultCallParameters() *callParameters {
|
|
return &callParameters{
|
|
ctx: context.Background(),
|
|
}
|
|
}
|
|
|
|
// WithContext returns option to specify call context. If provided, all network
|
|
// communications will be based on this context. Otherwise, context.Background()
|
|
// is used.
|
|
//
|
|
// Context SHOULD NOT be nil.
|
|
func WithContext(ctx context.Context) CallOption {
|
|
return func(prm *callParameters) {
|
|
prm.ctx = ctx
|
|
}
|
|
}
|