grpc added get node terminal, updated corefx to leverage get node terminal to launch local terminals on double click
This commit is contained in:
parent
43e18d820f
commit
a8061b811d
5 changed files with 63 additions and 6 deletions
|
@ -43,6 +43,8 @@ service CoreApi {
|
|||
}
|
||||
rpc NodeCommand (NodeCommandRequest) returns (NodeCommandResponse) {
|
||||
}
|
||||
rpc GetNodeTerminal (GetNodeTerminalRequest) returns (GetNodeTerminalResponse) {
|
||||
}
|
||||
|
||||
// link rpc
|
||||
rpc GetNodeLinks (GetNodeLinksRequest) returns (GetNodeLinksResponse) {
|
||||
|
@ -323,6 +325,15 @@ message DeleteNodeResponse {
|
|||
bool result = 1;
|
||||
}
|
||||
|
||||
message GetNodeTerminalRequest {
|
||||
int32 session_id = 1;
|
||||
int32 node_id = 2;
|
||||
}
|
||||
|
||||
message GetNodeTerminalResponse {
|
||||
string terminal = 1;
|
||||
}
|
||||
|
||||
message NodeCommandRequest {
|
||||
int32 session_id = 1;
|
||||
int32 node_id = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue