Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface {
// CloseConn closes the gRPC client connection.
CloseConn(ctx context.Context) error
// IsReady checks if the udsource connection is ready.
IsReady(ctx context.Context, in *emptypb.Empty) (bool, error)
// ReadFn reads messages from the udsource.
ReadFn(ctx context.Context, req *sourcepb.ReadRequest, datumCh chan<- *sourcepb.ReadResponse) error
// AckFn acknowledges messages from the udsource.
AckFn(ctx context.Context, req *sourcepb.AckRequest) (*sourcepb.AckResponse, error)
// PendingFn returns the number of pending messages from the udsource.
PendingFn(ctx context.Context, req *emptypb.Empty) (*sourcepb.PendingResponse, error)
// PartitionsFn returns the list of partitions from the udsource.
PartitionsFn(ctx context.Context, req *emptypb.Empty) (*sourcepb.PartitionsResponse, error)
}
Client contains methods to call a gRPC client.
func NewFromClient ¶
func NewFromClient(c sourcepb.SourceClient) (Client, error)
NewFromClient creates a new client object from the grpc client. This is used for testing.
type Option ¶
type Option func(*options)
Option is the interface to apply options.
func WithMaxMessageSize ¶
WithMaxMessageSize sets the max message size to the given size.
func WithServerInfoFilePath ¶
WithServerInfoFilePath start the client with the given server info file path. This is mainly used for testing purpose.
func WithServerInfoReadinessTimeout ¶
WithServerInfoReadinessTimeout sets the server info readiness timeout to the given timeout.
func WithSockAddr ¶
WithSockAddr start the client with the given sock addr. This is mainly used for testing purpose.
Click to show internal directories.
Click to hide internal directories.