All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.dyno.connectionpool.MultiKeyCompressionOperation Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package com.netflix.dyno.connectionpool;

/**
 * Interface to be used for multi key operations, i.e.
 * taking as input an vararg like String...
 *
 * @param 
 * @param 
 * @author ipapapa
 */
public interface MultiKeyCompressionOperation extends Operation {

    String[] compressMultiKeyValue(ConnectionContext ctx, String... value);

    String decompressValue(ConnectionContext ctx, String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy