com.cisco.trex.stateless.util.IDataCompressor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trex-java-sdk Show documentation
Show all versions of trex-java-sdk Show documentation
Java client SDK provides an implementation for TRex RPC APIs
package com.cisco.trex.stateless.util;
public interface IDataCompressor {
byte[] compressStringToBytes(String request);
String decompressBytesToString(byte[] data);
}