GridGain™ 2.1.0
Java API Specification

org.gridgain.grid.gridify
Interface GridifyArgument

All Superinterfaces:
Serializable
All Known Implementing Classes:
GridifyArgumentAdapter

public interface GridifyArgument
extends Serializable

Gridify task argument created by the system for task execution. It contains all information needed to reflectively execute a method remotely.

Use GridifyArgumentAdapter convenience adapter for creating gridify arguments when implementing custom gridify jobs.

See Gridify documentation for more information about execution of gridified methods.



See Also:

  Documentation
  Email Support
  Online Forums
  Issue Tracking

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

See Also:
Gridify
 

Method Summary
 Class<?> getMethodClass()
          Gets class to which the executed method belongs.
 String getMethodName()
          Gets method name.
 Object[] getMethodParameters()
          Gets method parameters in the same order they appear in method signature.
 Class<?>[] getMethodParameterTypes()
          Gets method parameter types in the same order they appear in method signature.
 Object getTarget()
          Gets target object to execute method on.
 

Method Detail

getMethodClass

Class<?> getMethodClass()
Gets class to which the executed method belongs.

Returns:
Class to which method belongs.

getMethodName

String getMethodName()
Gets method name.

Returns:
Method name.

getMethodParameterTypes

Class<?>[] getMethodParameterTypes()
Gets method parameter types in the same order they appear in method signature.

Returns:
Method parameter types.

getMethodParameters

Object[] getMethodParameters()
Gets method parameters in the same order they appear in method signature.

Returns:
Method parameters.

getTarget

Object getTarget()
Gets target object to execute method on. Null for static methods.

Returns:
Execution state (possibly null), required for remote object creation.

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.