Documentation ¶
Overview ¶
Package command provides a client for integration with the core-command service.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CommandClient ¶
type CommandClient interface { // Get issues a GET command targeting the specified device, using the specified command id Get(ctx context.Context, deviceId string, commandId string) (string, error) // Put issues a PUT command targeting the specified device, using the specified command id Put(ctx context.Context, deviceId string, commandId string, body string) (string, error) // GetDeviceCommandByNames issues a GET command targeting the specified device, using the specified device and command name GetDeviceCommandByNames(ctx context.Context, deviceName string, commandName string) (string, error) // PutDeviceCommandByNames issues a PUT command targeting the specified device, using the specified device and command names PutDeviceCommandByNames(ctx context.Context, deviceName string, commandName string, body string) (string, error) }
CommandClient interface defines interactions with the EdgeX Core Command microservice.
func NewCommandClient ¶
func NewCommandClient(urlClient interfaces.URLClient) CommandClient
NewCommandClient creates an instance of CommandClient
Click to show internal directories.
Click to hide internal directories.