GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::killProc. More...
#include <gpudb/protocol/kill_proc.h>
Public Member Functions | |
KillProcRequest () | |
Constructs a KillProcRequest object with default parameters. More... | |
KillProcRequest (const std::string &runId_, const std::map< std::string, std::string > &options_) | |
Constructs a KillProcRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | runId |
The run ID of a running proc instance. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::killProc.
Kills a running proc instance.
Definition at line 17 of file kill_proc.h.
|
inline |
Constructs a KillProcRequest object with default parameters.
Definition at line 22 of file kill_proc.h.
|
inline |
Constructs a KillProcRequest object with the specified parameters.
[in] | runId_ | The run ID of a running proc instance. If a proc with a matching run ID is not found or the proc instance has already completed, no procs will be killed. If not specified, all running proc instances will be killed. The default value is ''. |
[in] | options_ | Optional parameters.
|
Definition at line 79 of file kill_proc.h.
std::map<std::string, std::string> gpudb::KillProcRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 124 of file kill_proc.h.
std::string gpudb::KillProcRequest::runId |
The run ID of a running proc instance.
If a proc with a matching run ID is not found or the proc instance has already completed, no procs will be killed. If not specified, all running proc instances will be killed. The default value is ''.
Definition at line 91 of file kill_proc.h.