public interface DataSenderListener
| Modifier and Type | Method and Description |
|---|---|
void |
dataReceived(java.lang.String method,
java.lang.String encoding,
java.lang.String uri,
java.util.Map<?,?> rawDataReceived)
This method is called when data has been received from the collector for a given collector method invocation.
|
void |
dataSent(java.lang.String method,
java.lang.String encoding,
java.lang.String uri,
byte[] rawDataSent)
This method is called when data has been sent to the collector and contains the raw data that was sent.
|
void dataSent(java.lang.String method,
java.lang.String encoding,
java.lang.String uri,
byte[] rawDataSent)
method - the method invoked on the collectorencoding - the encoding used for this request/response (identity, deflate)uri - the URI this data was sent torawDataSent - the raw (compressed or uncompressed) payload sent to the collectorvoid dataReceived(java.lang.String method,
java.lang.String encoding,
java.lang.String uri,
java.util.Map<?,?> rawDataReceived)
method - the method invoked on the collectorencoding - the encoding used for this request/response (identity, deflate)uri - the URI this data was sent torawDataReceived - the raw (marshalled to a Map) response from the collector