deprecate some methods

pull/2300/head
Nikita Koksharov 6 years ago
parent dec65f7cc6
commit ec9a661aa4

@ -51,9 +51,11 @@ public class State {
return batchIndex;
}
@Deprecated
public <T extends DecoderState> T getDecoderState() {
return (T) decoderState;
}
@Deprecated
public void setDecoderState(DecoderState decoderState) {
this.decoderState = decoderState;
}

@ -20,6 +20,7 @@ package org.redisson.client.protocol.decoder;
* @author Nikita Koksharov
*
*/
@Deprecated
public interface DecoderState {
DecoderState copy();

@ -26,6 +26,7 @@ import org.redisson.client.protocol.Decoder;
* @author Nikita Koksharov
*
*/
@Deprecated
public class LongMultiDecoder implements MultiDecoder<Object> {
@Override

Loading…
Cancel
Save