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

net.spy.memcached.ops.StoreOperation Maven / Gradle / Ivy

The newest version!
package net.spy.memcached.ops;

/**
 * Operation that represents object storage.
 */
public interface StoreOperation extends KeyedOperation {

  /**
   * Get the store type used by this operation.
   */
  StoreType getStoreType();

  /**
   * Get the flags to be set.
   */
  int getFlags();

  /**
   * Get the expiration value to be set.
   */
  int getExpiration();

  /**
   * Get the bytes to be set during this operation.
   *
   * 

* Note, this returns an exact reference to the bytes and the data * must not be modified. *

*/ byte[] getData(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy