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

com.github.dm.jrt.builder.ObjectRoutineBuilder Maven / Gradle / Ivy

There is a newer version: 5.9.0
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.dm.jrt.builder;

import com.github.dm.jrt.routine.Routine;
import com.github.dm.jrt.util.ClassToken;

import org.jetbrains.annotations.NotNull;

import java.lang.reflect.Method;

/**
 * Interface defining a builder of routines wrapping an object methods.
 * 

* Created by davide-maestroni on 03/07/2015. */ public interface ObjectRoutineBuilder extends ConfigurableBuilder, ProxyConfigurableBuilder { /** * Returns a routine used to call the method whose identifying name is specified in a * {@link com.github.dm.jrt.annotation.Alias Alias} annotation.
* Optional {@code com.github.dm.jrt.annotation.*} method annotations will be honored as * well.
* Note that such annotations will override any configuration set through the builder. *

* Note that it is up to the caller to ensure that the input data are passed to the routine in * the correct order. * * @param name the name specified in the annotation. * @param the input data type. * @param the output data type. * @return the routine. * @throws java.lang.IllegalArgumentException if the specified method is not found. * @see Annotations */ @NotNull Routine aliasMethod(@NotNull String name); /** * Returns a proxy object enabling asynchronous call of the target instance methods. *

* The routines used for calling the methods will honor the attributes specified in any optional * {@code com.github.dm.jrt.annotation.*} annotations.
* Note that such annotations will override any configuration set through the builder. *

* In case the wrapped object does not implement the specified interface, the alias annotation * value will be used to bind the interface method with the instance ones. If no annotation is * present, the method name will be used instead.
* The interface will be interpreted as a proxy of the target object methods, and the optional * {@link com.github.dm.jrt.annotation.Input Input}, * {@link com.github.dm.jrt.annotation.Inputs Inputs}, * {@link com.github.dm.jrt.annotation.Invoke Invoke} and * {@link com.github.dm.jrt.annotation.Output Output} annotations will be honored. * * @param itf the token of the interface implemented by the returned object. * @param the interface type. * @return the proxy object. * @throws java.lang.IllegalArgumentException if the specified class token does not represent an * interface. * @see Annotations */ @NotNull TYPE buildProxy(@NotNull ClassToken itf); /** * Returns a proxy object enabling asynchronous call of the target instance methods. *

* The routines used for calling the methods will honor the attributes specified in any optional * {@code com.github.dm.jrt.annotation.*} annotations.
* Note that such annotations will override any configuration set through the builder. *

* In case the wrapped object does not implement the specified interface, the alias annotation * value will be used to bind the interface method with the instance ones. If no annotation is * present, the method name will be used instead.
* The interface will be interpreted as a proxy of the target object methods, and the optional * {@link com.github.dm.jrt.annotation.Input Input}, * {@link com.github.dm.jrt.annotation.Inputs Inputs}, * {@link com.github.dm.jrt.annotation.Invoke Invoke} and * {@link com.github.dm.jrt.annotation.Output Output} annotations will be honored. * * @param itf the interface implemented by the returned object. * @param the interface type. * @return the proxy object. * @throws java.lang.IllegalArgumentException if the specified class does not represent an * interface. * @see Annotations */ @NotNull TYPE buildProxy(@NotNull Class itf); /** * Returns a routine used to call the specified method. *

* The method is searched via reflection ignoring a name specified in a * {@link com.github.dm.jrt.annotation.Alias Alias} annotation. Though, optional * {@code com.github.dm.jrt.annotation.*} method annotations will be honored.
* Note that such annotations will override any configuration set through the builder. *

* Note that it is up to the caller to ensure that the input data are passed to the routine in * the correct order. * * @param name the method name. * @param parameterTypes the method parameter types. * @return the routine. * @throws java.lang.IllegalArgumentException if no matching method is found. * @see Annotations */ @NotNull Routine method(@NotNull String name, @NotNull Class... parameterTypes); /** * Returns a routine used to call the specified method. *

* The method is invoked ignoring a name specified in a * {@link com.github.dm.jrt.annotation.Alias Alias} annotation. Though, optional * {@code com.github.dm.jrt.annotation.*} method annotations will be honored.
* Note that such annotations will override any configuration set through the builder. *

* Note that it is up to the caller to ensure that the input data are passed to the routine in * the correct order. * * @param method the method instance. * @param the input data type. * @param the output data type. * @return the routine. * @see Annotations */ @NotNull Routine method(@NotNull Method method); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy