mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Define InterpreterCompletion structure to thrift file
This commit is contained in:
parent
794d4b385f
commit
73e374e2cb
1 changed files with 6 additions and 1 deletions
|
|
@ -56,6 +56,11 @@ struct RemoteInterpreterEvent {
|
|||
2: string data // json serialized data
|
||||
}
|
||||
|
||||
struct InterpreterCompletion {
|
||||
1: string name,
|
||||
2: string value
|
||||
}
|
||||
|
||||
service RemoteInterpreterService {
|
||||
void createInterpreter(1: string intpGroupId, 2: string noteId, 3: string className, 4: map<string, string> properties);
|
||||
|
||||
|
|
@ -65,7 +70,7 @@ service RemoteInterpreterService {
|
|||
void cancel(1: string noteId, 2: string className, 3: RemoteInterpreterContext interpreterContext);
|
||||
i32 getProgress(1: string noteId, 2: string className, 3: RemoteInterpreterContext interpreterContext);
|
||||
string getFormType(1: string noteId, 2: string className);
|
||||
list<string> completion(1: string noteId, 2: string className, 3: string buf, 4: i32 cursor);
|
||||
list<InterpreterCompletion> completion(1: string noteId, 2: string className, 3: string buf, 4: i32 cursor);
|
||||
void shutdown();
|
||||
|
||||
string getStatus(1: string noteId, 2:string jobId);
|
||||
|
|
|
|||
Loading…
Reference in a new issue