Package org.apache.ignite.resources
Annotation Type TaskContinuousMapperResource
- 
 @Documented @Retention(RUNTIME) @Target({METHOD,FIELD}) public @interface TaskContinuousMapperResource Annotates a field or a setter method for injection ofComputeTaskContinuousMapperresource.Task continuous mapper can be injected into ComputeTaskclass instance.Here is how injection would typically happen: public class MyGridJob implements ComputeJob { ... @TaskContinuousMapperResource private ComputeTaskContinuousMapper mapper; ... }orpublic class MyGridJob implements ComputeJob { ... private ComputeTaskContinuousMapper mapper; ... @TaskContinuousMapperResource public void setMapper(ComputeTaskContinuousMapper mapper) { this.mapper = mapper; } ... }