ListUsers()
This method returns a list of existing users.
func (c *Client) ListUsers(ctx context.Context, opt ListUserOption, callOpts ...grpc.CallOption) ([]string, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
ListUserOption
This is an interface type. The listUserOption
struct type implements this interface type.
You can use the NewListUserOption()
function to get the concrete implementation.
NewListUserOption
The signature of NewListUserOption()
is as follows:
func NewListUserOption() *listUserOption
grpc.CallOption
This interface provided by the gRPC Go library allows you to specify additional options or configurations when making requests. For possible implementations of this interface, refer to this file.
Return
[]string
Example
import (
"context"
"google.golang.org/grpc"
"github.com/milvus-io/milvus/v2/milvusclient"
)
opts := client.NewListUserOption()
onFinish := func(ctx context.Context, err error) {
if err != nil {
fmt.Printf("gRPC call finished with error: %v\n", err)
} else {
fmt.Printf("gRPC call finished successfully")
}
}
callOption := grpc.OnFinish(onFinish)
err := mclient.ListUsers(context.Background(), opts, callOption)