Package org.atmosphere.config.managed
Interface Decoder<U,T>
-
- Type Parameters:
U-T-
public interface Decoder<U,T>Decode a message in order to invoke a class annotated withManagedServicewith a method annotated withMessage. For example:public final class StringBufferDecoder implements Decoder{ - Author:
- Jeanfrancois Arcand
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tdecode(U s)Decode the specified object of type U into object of type T
-