blob: 705533dcbf714a62a43ddeb77ca15d3510467e89 [file] [log] [blame]
package org.apache.felix.dm.lambda.callbacks;
import java.util.Objects;
import org.apache.felix.dm.Component;
/**
* Represents a callback(Component, Service) that is invoked on a Component implementation class.
* The type of the class on which the callback is invoked on is represented by the T generic parameter.
*
* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
*/
@FunctionalInterface
public interface CbTypeComponentService<T, S> extends SerializableLambda {
/**
* Handles the given arguments.
* @param instance the Component implementation instance on which the callback is invoked on.
* @param c first callback param
* @param service second callback param
*/
void accept(T instance, Component c, S service);
default CbTypeComponentService<T, S> andThen(CbTypeComponentService<T, S> after) {
Objects.requireNonNull(after);
return (T instance, Component c, S s) -> {
accept(instance, c, s);
after.accept(instance, c, s);
};
}
}