Apama Documentation : Connecting Apama Applications to External Components : Developing Custom Adapters : Java Codec Plug-in Development : The Codec Plug-in Development Specification for Java
The Codec Plug-in Development Specification for Java
 
Java codec functions to implement
Communication with other layers
Java codec exceptions
Semantic Mapper exceptions
Logging
Working with normalized events
A Java codec layer plug-in is implemented as a Java class extending AbstractEventCodec. Typically this class would be packaged up, together with any supporting classes, as a Java Archive (.jar) file.
To comply with Apama's Codec Plug-in Development Specification, an event codec class must satisfy two conditions:
1. It must have a constructor with the signature:
public AbstractEventCodec(
String name,
    EventCodecProperty[] properties,
    TimestampConfig timestampConfig)
throws CodecException
This will be used by the IAF to instantiate the plug-in.
2. It must extend the com.apama.iaf.plugin.AbstractEventCodec class, correctly implementing all of its abstract methods.
(These methods are mostly directly equivalent to the functions with the same names in the C/C++ Codec Plug-in Development Specification.)
Note that all Java plug-ins are dependent on classes in ap-iaf-extension-api.jar, so this file must always be on the classpath during plug-in development. It is located in the Apama installation's lib directory.
Unless otherwise stated, Java classes referred to in this chapter are members of the com.apama.iaf.plugin package, whose classes and interfaces are contained in this .jar.
Copyright © 2013-2016 Software AG, Darmstadt, Germany.

Product LogoContact Support   |   Community   |   Feedback