Example usage for org.springframework.integration.mapping InboundMessageMapper interface-usage

List of usage examples for org.springframework.integration.mapping InboundMessageMapper interface-usage

Introduction

In this page you can find the example usage for org.springframework.integration.mapping InboundMessageMapper interface-usage.

Usage

From source file org.springframework.integration.ip.tcp.connection.TcpMessageMapper.java

/**
 * Maps incoming data from a {@link TcpConnection} to a {@link Message}.
 * If StringToBytes is true (default),
 * payloads of type String are converted to a byte[] using the supplied
 * charset (UTF-8 by default).
 * Inbound messages include headers representing the remote end of the

From source file org.springframework.integration.xmpp.presence.XmppPresenceMessageMapper.java

/**
 * Implementation of the strategy interface {@link org.springframework.integration.mapping.OutboundMessageMapper}. This is the hook that lets the adapter receive various payloads from
 * components inside Spring Integration and forward them correctly as {@link org.jivesoftware.smack.packet.Presence} instances.
 *
 * @author Josh Long
 * @since 2.0

From source file org.springframework.integration.gateway.GatewayMethodInboundMessageMapper.java

/**
 * A Message Mapper implementation that supports mapping <i>to</i> a
 * Message from an argument array when invoking gateway methods.
 * <p>
 * Some examples of legal method signatures:<br>
 * <tt>public void dealWith(Object payload);</tt><br>