CompletionStage<Optional<Map<String,CompletionStage<Result<R>>>>> |
LocalCall.callAsync(SaltClient client,
Target<?> target,
AuthMethod auth,
EventStream events,
CompletionStage<GenericError> cancel,
Batch batch) |
Calls this salt call via the async client and returns the results
as they come in via the event stream.
|
CompletionStage<Optional<Map<String,CompletionStage<Result<R>>>>> |
LocalCall.callAsync(SaltClient client,
Target<?> target,
AuthMethod auth,
EventStream events,
CompletionStage<GenericError> cancel,
Optional<Batch> batch) |
Calls this salt call via the async client and returns the results
as they come in via the event stream.
|
CompletionStage<Optional<Map<String,CompletionStage<Result<R>>>>> |
LocalCall.callAsync(Function<LocalCall<R>,CompletionStage<Optional<LocalAsyncResult<R>>>> localAsync,
Function<RunnerCall<Map<String,R>>,CompletionStage<RunnerAsyncResult<Map<String,R>>>> runnerAsync,
EventStream events,
CompletionStage<GenericError> cancel) |
Calls this salt call via the async client and returns the results
as they come in via the event stream.
|
CompletionStage<Map<String,Result<R>>> |
LocalCall.callSync(SaltClient client,
Target<?> target,
AuthMethod auth) |
Calls a execution module function on the given target and synchronously
waits for the result.
|
CompletionStage<List<Map<String,Result<R>>>> |
LocalCall.callSync(SaltClient client,
Target<?> target,
AuthMethod auth,
Batch batch) |
Calls a execution module function on the given target with batching and
synchronously waits for the result.
|
CompletionStage<List<Map<String,Result<R>>>> |
LocalCall.callSync(SaltClient client,
Target<?> target,
AuthMethod auth,
Optional<Batch> batch) |
Calls a execution module function on the given target with batching and
synchronously waits for the result.
|
CompletionStage<Result<R>> |
RunnerCall.callSync(SaltClient client,
AuthMethod auth) |
Calls a runner module function on the master and synchronously
waits for the result.
|
CompletionStage<WheelResult<Result<R>>> |
WheelCall.callSync(SaltClient client,
AuthMethod auth) |
Calls a wheel module function on the master and synchronously
waits for the result.
|
CompletionStage<Map<String,Result<SSHResult<R>>>> |
LocalCall.callSyncSSH(SaltClient client,
SSHTarget<?> target,
SaltSSHConfig cfg,
AuthMethod auth) |
Call an execution module function on the given target via salt-ssh and synchronously
wait for the result.
|