GridGain™ 2.1.0
Java API Specification

org.gridgain.grid.resources
Annotation Type GridMarshallerResource


@Documented
@Retention(value=RUNTIME)
@Target(value={METHOD,FIELD})
@Apache20LicenseCompatible
public @interface GridMarshallerResource

Annotates a field or a setter method for injection of GridMarshaller resource. Grid marshaller is provided to grid via GridConfiguration.

Marshaller can be injected into instances of following classes:

Here is how injection would typically happen:

 public class MyGridJob implements GridJob {
      ...
      @GridMarshallerResource
      private GridMarshaller marshaller;
      ...
  }
 
or
 public class MyGridJob implements GridJob {
     ...
     private GridMarshaller marshaller = null;
     ...
     @GridMarshallerResource
     public void setMarshaller(GridMarshaller marshaller) {
          this.marshaller = marshaller;
     }
     ...
 }
 

See GridConfiguration.getMarshaller() for Grid configuration details.



See Also:

  Documentation
  Email Support
  Online Forums
  Issue Tracking

Author:   2005-2008 Copyright © GridGain Systems. All Rights Reserved. ver. 2.1.0

 


GridGain™ 2.1.0
Java API Specification

GridGain™ - Grid Computing Made Simple, ver. 2.1.0.19122008
2005-2008 Copyright © GridGain Systems. All Rights Reserved.