* Add Inbound adapter * Add Outbound adapter * Add serialization * Initial Documentation * Add unit tests * Add async producer * Support Kafka 0.8 * Add Kafka Sample See: https://jira.springsource.org/browse/INTEXT-44
73 lines
2.4 KiB
XML
73 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="SIAdapterLowerPrefix">
|
|
<title>Kafka Adapter</title>
|
|
<para>
|
|
The Spring Integration Kafka Adapter provides...
|
|
</para>
|
|
<itemizedlist>
|
|
<listitem>
|
|
<para><emphasis><link linkend='SIAdapterLowerPrefix-outbound-channel-adapter'>Outbound Channel adapter</link></emphasis></para>
|
|
</listitem>
|
|
<listitem>
|
|
<para><emphasis><link linkend='SIAdapterLowerPrefix-outbound-gateway'>Outbound Gateway</link></emphasis></para>
|
|
</listitem>
|
|
<listitem>
|
|
<para><emphasis><link linkend='SIAdapterLowerPrefix-inbound-channel-adapter'>Inbound Channel Adapter</link></emphasis></para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<section id="jpa-java-implementation">
|
|
<title>Java Implementation</title>
|
|
<para>Each of the provided components will use the
|
|
<classname>org.springframework.integration.kafka.core.KafkaExecutor</classname>
|
|
class...
|
|
</para>
|
|
</section>
|
|
<section id="jpa-common-configuration-attributes">
|
|
<title>Common Configuration Attributes</title>
|
|
<para>
|
|
Certain configuration parameters are shared amongst all Kafka
|
|
components and are described below:
|
|
</para>
|
|
|
|
<para><emphasis role="bold">auto-startup</emphasis></para>
|
|
<para>
|
|
Lifecycle attribute signaling if this component should
|
|
be started during Application Context startup.
|
|
Defaults to <code>true</code>.
|
|
<emphasis>Optional</emphasis>.
|
|
</para>
|
|
|
|
<para><emphasis role="bold">id</emphasis></para>
|
|
<para>
|
|
Identifies the underlying Spring bean definition, which
|
|
is an instance of either <classname>EventDrivenConsumer</classname>
|
|
or <classname>PollingConsumer</classname>.
|
|
<emphasis>Optional</emphasis>.
|
|
</para>
|
|
|
|
</section>
|
|
|
|
<section id="SIAdapterLowerPrefix-outbound-channel-adapter">
|
|
<title>Outbound Channel Adapter</title>
|
|
<para>
|
|
The Kafka Outbound channel adapter allows you to...
|
|
</para>
|
|
</section>
|
|
<section id="SIAdapterLowerPrefix-outbound-gateway">
|
|
<title>Outbound Gateway</title>
|
|
<para>
|
|
Outbound gateways are similar to outbound channel adapters except that it can also be used to
|
|
get a result on the <emphasis>reply channel</emphasis> after performing
|
|
the given...
|
|
</para>
|
|
</section>
|
|
<section id="SIAdapterLowerPrefix-inbound-channel-adapter">
|
|
<title>Inbound Channel Adapter</title>
|
|
<para>
|
|
An inbound channel adapter is used to execute...
|
|
</para>
|
|
</section>
|
|
|
|
</chapter>
|