brooklyn.policy.autoscaling.ResizeOperator Maven / Gradle / Ivy
package brooklyn.policy.autoscaling;
import brooklyn.entity.Entity;
public interface ResizeOperator {
/**
* Resizes the given entity to the desired size, if possible.
*
* @return the new size of the entity
*/
public Integer resize(Entity entity, Integer desiredSize);
}