Package org.apache.ignite.configuration
Interface ConnectorMessageInterceptor
-
public interface ConnectorMessageInterceptor
Interface for user-defined object interceptors.Interceptors allow user to transform objects send and received via REST protocols. For example they could be used for customized multi-language marshalling by converting binary object representation received from client to java object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable Object
onReceive(@Nullable Object obj)
Intercepts received objects.@Nullable Object
onSend(Object obj)
Intercepts received objects.
-