Research Article

MCAF: Developing an Annotation-Based Offloading Framework for Mobile Cloud Computing

Algorithm 3

Annotating the “Add” method in the “A” class.
public class A extends MainActivity {
 @Upload(valueType = {“int,” “int”})
 int Add(int x, int y) {
  return x + y;
 }
}