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

com.github.dm.jrt.object.annotation.AsyncInput Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016 Davide Maestroni
 *
 * 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.object.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Through this annotation it is possible to indicate the original parameter type of the target
 * object method.
 * 

* The only use case in which this annotation is useful, is when an interface is used as a proxy * of another class methods. The interface can take some input parameters in an asynchronous way. In * such case, the value specified in the annotation will indicate the type of the parameter expected * by the target method. *

* For example, a method taking two integers: *

 *     
 *
 *         public int sum(int i1, int i2);
 *     
 * 
*

* can be proxied by a method defined as: *

 *     
 *
 *         public int sum(@AsyncInput(int.class) Channel<?, Integer> i1, int i2);
 *     
 * 
* Note that the transfer mode is specifically chosen through the annotation {@code mode} attribute * (it's {@link AsyncInput.InputMode#VALUE VALUE} by default). *

* This annotation is used to decorate methods that are to be invoked in an asynchronous way. *
* Note that the piece of code inside such methods will be automatically protected so to avoid * concurrency issues. Though, other parts of the code inside the same class will be not. *
* In order to prevent unexpected behaviors, it is advisable to avoid using the same class fields * (unless immutable) in protected and non-protected code, or to call synchronous methods through * routines as well. *

* Finally, be aware that a method might need to be made accessible in order to be called. That * means that, in case a {@link java.lang.SecurityManager} is installed, a security exception might * be raised based on the specific policy implemented. *

* Remember also that, in order for the annotation to properly work at run time, the following rules * must be added to the project Proguard file (if employed for shrinking or obfuscation): *

 *     
 *
 *         -keepattributes RuntimeVisibleAnnotations
 *         -keepclassmembers class ** {
 *              @com.github.dm.jrt.object.annotation.AsyncInput *;
 *         }
 *     
 * 
*

* Created by davide-maestroni on 05/23/2015. */ @Target(ElementType.PARAMETER) @Retention(RetentionPolicy.RUNTIME) public @interface AsyncInput { /** * The input transfer mode. * * @return the mode. */ InputMode mode() default InputMode.VALUE; /** * The parameter class. * * @return the class. */ Class value(); /** * Input transfer mode type. *
* The mode indicates in which way a parameter is passed to the wrapped method. */ enum InputMode { /** * Value mode. *
* The variable is just read from a channel. *

* The annotated parameters must extend a * {@link com.github.dm.jrt.core.channel.Channel Channel}. */ VALUE, /** * Collection mode. *
* The inputs are collected from the channel and passed as an array or collection to the * wrapped method. *

* The annotated parameter must extend a * {@link com.github.dm.jrt.core.channel.Channel Channel} and must be the only parameter * accepted by the method. */ COLLECTION } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy