This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from 359aa13 Use the same version of Metrics for Camel-CassandraQL too new 6f99ee6 CAMEL-12427: camel-netty4 - Add SPI to plugin custom correlation state for request/reply in producer new c88a079 CAMEL-12427: Polished doc new f906c1f Polished docs new 6b341bc CAMEL-12427: camel-netty4 - Add SPI to plugin custom correlation state for request/reply in producer new 484cd10 CAMEL-12427: add example for using custom correlation manager and codec with netty new 243549f CAMEL-12427: camel-netty4 - Add SPI to plugin custom correlation state for request/reply in producer The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../camel-hl7/src/main/docs/hl7-dataformat.adoc | 194 ++++++++------- .../src/main/docs/netty4-component.adoc | 269 ++++++++++----------- .../camel/component/netty4/NettyConfiguration.java | 11 +- .../camel-example-netty-custom-correlation/pom.xml | 109 +++++++++ .../readme.adoc | 30 +++ .../org/apache/camel/example/netty/MyClient.java | 74 ++++++ .../apache/camel/example/netty/MyCodecDecoder.java | 72 ++++++ .../camel/example/netty/MyCodecDecoderFactory.java | 28 +++ .../apache/camel/example/netty/MyCodecEncoder.java | 50 ++++ .../camel/example/netty/MyCodecEncoderFactory.java | 28 +++ .../camel/example/netty/MyCorrelationManager.java | 72 ++++++ .../org/apache/camel/example/netty/MyServer.java | 53 ++++ .../src/main}/resources/log4j2.properties | 0 examples/pom.xml | 1 + .../springboot/NettyComponentConfiguration.java | 17 +- 15 files changed, 766 insertions(+), 242 deletions(-) create mode 100644 examples/camel-example-netty-custom-correlation/pom.xml create mode 100644 examples/camel-example-netty-custom-correlation/readme.adoc create mode 100644 examples/camel-example-netty-custom-correlation/src/main/java/org/apache/camel/example/netty/MyClient.java create mode 100644 examples/camel-example-netty-custom-correlation/src/main/java/org/apache/camel/example/netty/MyCodecDecoder.java create mode 100644 examples/camel-example-netty-custom-correlation/src/main/java/org/apache/camel/example/netty/MyCodecDecoderFactory.java create mode 100644 examples/camel-example-netty-custom-correlation/src/main/java/org/apache/camel/example/netty/MyCodecEncoder.java create mode 100644 examples/camel-example-netty-custom-correlation/src/main/java/org/apache/camel/example/netty/MyCodecEncoderFactory.java create mode 100644 examples/camel-example-netty-custom-correlation/src/main/java/org/apache/camel/example/netty/MyCorrelationManager.java create mode 100644 examples/camel-example-netty-custom-correlation/src/main/java/org/apache/camel/example/netty/MyServer.java copy {tests/camel-itest-osgi/src/test => examples/camel-example-netty-custom-correlation/src/main}/resources/log4j2.properties (100%) -- To stop receiving notification emails like this one, please contact davscl...@apache.org.