Clarify that Java codecs work only with Java inputs and outputs

Fixes #10716
This commit is contained in:
Dan Hermann 2019-04-24 11:09:37 -05:00
parent a44cb9ebf3
commit f9a5876b3c

View file

@ -17,10 +17,14 @@
//:methodheader: Logstash codecs must implement the `register` method, and the `decode` method or the `encode` method (or both). //:methodheader: Logstash codecs must implement the `register` method, and the `decode` method or the `encode` method (or both).
[[java-codec-plugin]] [[java-codec-plugin]]
=== How to write a Java codec plugin === How to write a Java codec plugin
beta[] beta[]
NOTE: Java codecs are currently supported only for Java input and output plugins. They will not work with Ruby
input or output plugins.
// Pulls in shared section: Setting Up Environment // Pulls in shared section: Setting Up Environment
include::include/javapluginsetup.asciidoc[] include::include/javapluginsetup.asciidoc[]