Package | Description |
---|---|
io.parallec.core |
Main package, including most user-facing classes such as the ParallelClient,
ParallelTask etc.
|
io.parallec.core.bean |
Beans.
|
Modifier and Type | Field and Description |
---|---|
private RequestProtocol |
ParallelTask.requestProtocol
The request protocol.
|
private RequestProtocol |
ParallelTaskBuilder.requestProtocol
The request protocol.
|
Modifier and Type | Method and Description |
---|---|
RequestProtocol |
ParallelTask.getRequestProtocol()
Gets the request protocol.
|
RequestProtocol |
ParallelTaskBuilder.getRequestProtocol()
Gets the request protocol.
|
static RequestProtocol |
RequestProtocol.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestProtocol[] |
RequestProtocol.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ParallelTaskBuilder |
ParallelTaskBuilder.setProtocol(RequestProtocol protocol)
Sets the protocol.
|
void |
ParallelTask.setRequestProtocol(RequestProtocol requestProtocol)
Sets the request protocol.
|
Constructor and Description |
---|
ParallelTask(RequestProtocol requestProtocol,
int concurrency,
HttpMeta httpMeta,
TargetHostMeta targetHostMeta,
SshMeta sshMeta,
TcpMeta tcpMeta,
UdpMeta udpMeta,
PingMeta pingMeta,
ParallecResponseHandler handler,
java.util.Map<java.lang.String,java.lang.Object> responseContext,
java.util.Map<java.lang.String,StrStrMap> replacementVarMapNodeSpecific,
java.util.Map<java.lang.String,java.lang.String> replacementVarMap,
RequestReplacementType requestReplacementType,
ParallelTaskConfig config)
Instantiates a new parallel task.
|
Modifier and Type | Field and Description |
---|---|
private RequestProtocol |
TaskRequest.protocol
The protocol.
|
Modifier and Type | Method and Description |
---|---|
RequestProtocol |
TaskRequest.getProtocol()
Gets the protocol.
|
Constructor and Description |
---|
TaskRequest(int actorMaxOperationTimeoutSec,
RequestProtocol protocol,
java.lang.String host,
java.lang.String hostUniform,
int port,
java.lang.String resourcePath,
java.lang.String requestContent,
HttpMethod httpMethod,
boolean pollable,
java.util.Map<java.lang.String,java.lang.String> httpHeaderMap,
ParallecResponseHandler handler,
java.util.Map<java.lang.String,java.lang.Object> responseContext,
SshMeta sshMeta,
TcpMeta tcpMeta,
UdpMeta udpMeta,
PingMeta pingMeta,
ResponseHeaderMeta responseHeaderMeta)
Instantiates a new task request.
|