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

com.g2forge.gearbox.browser.operation.IOperationBuilder Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package com.g2forge.gearbox.browser.operation;

import com.g2forge.alexandria.java.function.IConsumer1;
import com.g2forge.alexandria.java.function.IFunction1;

public interface IOperationBuilder {
	public T execute(IConsumer1 operation);

	public  V until(IFunction1 function);

	public default IOperationBuilder wrap(IFunction1 factory) {
		return new WrappedOperationBuilder<>(factory, this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy