Package | Description |
---|---|
org.mule.api.transport |
Contains the interfaces that comprise a provider implementation.
|
org.mule.transport |
Contains Abstract classes providing common functionality for all Mule providers.
|
org.mule.transport.http |
Provides http transport including proxy support.
|
org.mule.transport.jms |
Provides Jms transport connectivity with support for all Jms features.
|
org.mule.transport.tcp |
Provides tcp connectivity for Mule.
|
org.mule.transport.udp |
Provides Udp connectivity for Mule.
|
org.mule.transport.vm |
A connector implementation allowing events to be passed between Mule sessions via in-memory queues.
|
Modifier and Type | Method and Description |
---|---|
MessageRequester |
MessageRequesterFactory.create(InboundEndpoint endpoint)
Creates a new message requester instance, initialised with the passed
endpoint.
|
Modifier and Type | Method and Description |
---|---|
void |
MessageRequesterFactory.activate(InboundEndpoint endpoint,
MessageRequester requester)
Invoked before the given requester is handed out to a
client, but not after
MessageRequesterFactory.create(org.mule.api.endpoint.InboundEndpoint) . |
void |
MessageRequesterFactory.destroy(InboundEndpoint endpoint,
MessageRequester requester)
Invoked when a requester returned
false for
MessageRequesterFactory.validate(org.mule.api.endpoint.InboundEndpoint, org.mule.api.transport.MessageRequester) . |
void |
MessageRequesterFactory.passivate(InboundEndpoint endpoint,
MessageRequester requester)
Invoked immediately before the given requester is returned
to its pool.
|
boolean |
MessageRequesterFactory.validate(InboundEndpoint endpoint,
MessageRequester requester)
Invoked after the requester is returned from a client but
before it is prepared for return to its pool via
MessageRequesterFactory.passivate(org.mule.api.endpoint.InboundEndpoint, org.mule.api.transport.MessageRequester) . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMessageRequester
Provide a default dispatch (client) support for handling threads lifecycle and validation.
|
class |
UnsupportedMessageRequester |
Modifier and Type | Method and Description |
---|---|
abstract MessageRequester |
AbstractMessageRequesterFactory.create(InboundEndpoint endpoint) |
MessageRequester |
KeyedPoolMessageRequesterFactoryAdapter.create(InboundEndpoint endpoint) |
MessageRequester |
UnsupportedMessageRequesterFactory.create(InboundEndpoint endpoint) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractMessageRequesterFactory.activate(InboundEndpoint endpoint,
MessageRequester requester) |
void |
KeyedPoolMessageRequesterFactoryAdapter.activate(InboundEndpoint endpoint,
MessageRequester requester) |
void |
AbstractMessageRequesterFactory.destroy(InboundEndpoint endpoint,
MessageRequester requester) |
void |
KeyedPoolMessageRequesterFactoryAdapter.destroy(InboundEndpoint endpoint,
MessageRequester requester) |
void |
AbstractMessageRequesterFactory.passivate(InboundEndpoint endpoint,
MessageRequester requester) |
void |
KeyedPoolMessageRequesterFactoryAdapter.passivate(InboundEndpoint endpoint,
MessageRequester requester) |
protected void |
AbstractConnector.setupRequestReturn(InboundEndpoint endpoint,
MessageRequester requester,
MuleMessage result)
This method will return the requester to the pool or, if the payload is an inputstream,
replace the payload with a new DelegatingInputStream which returns the requester to
the pool when the stream is closed.
|
boolean |
AbstractMessageRequesterFactory.validate(InboundEndpoint endpoint,
MessageRequester requester) |
boolean |
KeyedPoolMessageRequesterFactoryAdapter.validate(InboundEndpoint endpoint,
MessageRequester requester) |
Modifier and Type | Class and Description |
---|---|
class |
HttpClientMessageRequester
Rquests Mule events over HTTP.
|
Modifier and Type | Method and Description |
---|---|
MessageRequester |
HttpClientMessageRequesterFactory.create(InboundEndpoint endpoint)
Creates a new message requester instance, initialised with the passed
endpoint.
|
Modifier and Type | Class and Description |
---|---|
class |
JmsMessageRequester
JmsMessageDispatcher is responsible for dispatching messages to JMS
destinations. |
Modifier and Type | Method and Description |
---|---|
MessageRequester |
JmsMessageRequesterFactory.create(InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
TcpMessageRequester
Request transformed Mule events from TCP.
|
Modifier and Type | Method and Description |
---|---|
MessageRequester |
TcpMessageRequesterFactory.create(InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
UdpMessageRequester
Responsible for requesting MuleEvents as UDP packets on the network
|
Modifier and Type | Method and Description |
---|---|
MessageRequester |
UdpMessageRequesterFactory.create(InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
VMMessageRequester
VMMessageDispatcher is used for providing in memory interaction
between components. |
Modifier and Type | Method and Description |
---|---|
MessageRequester |
VMMessageRequesterFactory.create(InboundEndpoint endpoint) |
Copyright © 2003–2013 MuleSource, Inc.. All rights reserved.