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

io.searchbox.action.BulkableAction Maven / Gradle / Ivy

There is a newer version: 6.3.1
Show newest version
package io.searchbox.action;

import io.searchbox.client.JestResult;

import java.util.Collection;

/**
 * Represents an Action that can be included in a Bulk request.
 *
 * @author cihat keser
 */
public interface BulkableAction extends DocumentTargetedAction {

    String getBulkMethodName();

    Collection getParameter(String key);

}