org.mockserver.codec.MockServerBinaryClientCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockserver-core Show documentation
Show all versions of mockserver-core Show documentation
Functionality used by all MockServer modules for matching and expectations
package org.mockserver.codec;
import io.netty.channel.CombinedChannelDuplexHandler;
public class MockServerBinaryClientCodec extends CombinedChannelDuplexHandler {
public MockServerBinaryClientCodec() {
init(new NettyBinaryToMockServerBinaryResponseDecoder(), new MockServerBinaryToNettyBinaryRequestEncoder());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy