com.platform.symphony.soam
Class DataCompressionFlags
java.lang.Object
com.platform.symphony.soam.DataCompressionFlags
public class DataCompressionFlags
- extends java.lang.Object
Data compression flags are used to modify the behavior of the data compression feature.
NOTE: If any of the methods of this class are called after the Main(...) method exits,
the client or service process may behave in an undefined manner (for example,
hang or terminate abnormally).
- See Also:
SessionCreationAttributes
,
SessionCreationAttributes#setDataCompressionFlags(int)
Field Summary |
static int |
BEST_SPEED
This informs the API to use the fastest compression method to compress the data. |
static int |
BETTER_SIZE
This informs the API to use the median level compression method to compress the data. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BEST_SPEED
public static final int BEST_SPEED
- This informs the API to use the fastest compression method to compress the data.
The use of BestSpeed will result in less compression than BetterSize (i.e. resulting data
might be larger), however, data may be compressed in a noticeably shorter time.
- See Also:
- Constant Field Values
BETTER_SIZE
public static final int BETTER_SIZE
- This informs the API to use the median level compression method to compress the data.
The use of BetterSize will result in slower compression times than BestSpeed, however, data may
experience greater compression (i.e. resulting data might be noticeably smaller).
- See Also:
- Constant Field Values
DataCompressionFlags
public DataCompressionFlags()