kg.apc.jmeter.samplers.UDPTrafficDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-extras Show documentation
Show all versions of jmeter-plugins-extras Show documentation
Custom plugins set for Apache JMeter
package kg.apc.jmeter.samplers;
import java.nio.ByteBuffer;
public interface UDPTrafficDecoder {
public abstract ByteBuffer encode(String data);
public abstract byte[] decode(byte[] data);
}