| Package | Description |
|---|---|
| org.mule.runtime.core.api.client | |
| org.mule.runtime.core.api.functional | |
| org.mule.runtime.core.execution | |
| org.mule.runtime.core.internal.client | |
| org.mule.runtime.core.policy |
| Modifier and Type | Method and Description |
|---|---|
Either<org.mule.runtime.api.message.Error,Optional<org.mule.runtime.api.message.Message>> |
MuleClient.request(String url,
long timeout)
Will receive an event from an endpointUri determined by the URL.
|
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
MuleClient.send(String url,
org.mule.runtime.api.message.Message message)
Sends an event synchronously to a endpointUri via a Mule server and a resulting message is returned.
|
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
MuleClient.send(String url,
org.mule.runtime.api.message.Message message,
long timeout)
Deprecated.
use
MuleClient.send(String, Message, OperationOptions) instead
Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned. |
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
MuleClient.send(String url,
org.mule.runtime.api.message.Message message,
OperationOptions operationOptions)
Sends an event synchronously to a endpointUri via a Mule server and a resulting message is returned.
|
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
MuleClient.send(String url,
Object payload,
Map<String,Serializable> messageProperties)
Deprecated.
use
MuleClient.send(String, Message) instead
Sends an event synchronously to a endpointUri via a Mule server and a resulting message is returned. |
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
MuleClient.send(String url,
Object payload,
Map<String,Serializable> messageProperties,
long timeout)
Deprecated.
use
MuleClient.send(String, Message, OperationOptions)
Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned. |
| Modifier and Type | Method and Description |
|---|---|
static <L,R> Either<L,R> |
Either.left(L value)
Creates an
Either with a left value. |
<T> Either<T,R> |
Either.mapLeft(Function<? super L,? extends T> func)
Allows to execute a function over the left value if it is present
|
<T> Either<L,T> |
Either.mapRight(Function<? super R,? extends T> func)
Allows to execute a function over the right value if it is present
|
static <L,R> Either<L,R> |
Either.right(R value)
Creates an
Either with a right value. |
| Modifier and Type | Method and Description |
|---|---|
void |
ModuleFlowProcessingPhaseTemplate.sendAfterTerminateResponseToClient(Either<MessagingException,Event> either) |
| Modifier and Type | Method and Description |
|---|---|
Either<org.mule.runtime.api.message.Error,Optional<org.mule.runtime.api.message.Message>> |
DefaultLocalMuleClient.request(String url,
long timeout) |
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
DefaultLocalMuleClient.send(String url,
org.mule.runtime.api.message.Message message) |
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
DefaultLocalMuleClient.send(String url,
org.mule.runtime.api.message.Message message,
long timeout) |
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
DefaultLocalMuleClient.send(String url,
org.mule.runtime.api.message.Message message,
OperationOptions operationOptions) |
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
DefaultLocalMuleClient.send(String url,
Object payload,
Map<String,Serializable> messageProperties) |
Either<org.mule.runtime.api.message.Error,org.mule.runtime.api.message.Message> |
DefaultLocalMuleClient.send(String url,
Object payload,
Map<String,Serializable> messageProperties,
long timeout) |
| Modifier and Type | Method and Description |
|---|---|
Either<FailureSourcePolicyResult,SuccessSourcePolicyResult> |
SourcePolicy.process(Event sourceEvent)
Process the source policy chain of processors.
|
Either<FailureSourcePolicyResult,SuccessSourcePolicyResult> |
CompositeSourcePolicy.process(Event sourceEvent)
Process the set of policies.
|
Copyright © 2003–2017 MuleSoft, Inc.. All rights reserved.