GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::deleteProc. More...
#include <gpudb/protocol/delete_proc.h>
Public Member Functions | |
DeleteProcRequest () | |
Constructs a DeleteProcRequest object with default parameters. More... | |
DeleteProcRequest (const std::string &procName_, const std::map< std::string, std::string > &options_) | |
Constructs a DeleteProcRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | procName |
Name of the proc to be deleted. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::deleteProc.
Deletes a proc. Any currently running instances of the proc will be killed.
Definition at line 18 of file delete_proc.h.
|
inline |
Constructs a DeleteProcRequest object with default parameters.
Definition at line 23 of file delete_proc.h.
|
inline |
Constructs a DeleteProcRequest object with the specified parameters.
[in] | procName_ | Name of the proc to be deleted. Must be the name of a currently existing proc. |
[in] | options_ | Optional parameters. The default value is an empty map. |
Definition at line 37 of file delete_proc.h.
std::map<std::string, std::string> gpudb::DeleteProcRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 52 of file delete_proc.h.
std::string gpudb::DeleteProcRequest::procName |
Name of the proc to be deleted.
Must be the name of a currently existing proc.
Definition at line 47 of file delete_proc.h.