jist.minisim
Interface proxy.entityInterface

All Superinterfaces:
JistAPI.Proxiable, JistAPI.Timeless
All Known Implementing Classes:
proxy.entity
Enclosing class:
proxy

public static interface proxy.entityInterface
extends JistAPI.Proxiable

Benchmark entity proxy interface.


Method Summary
 void finish()
          End benchmark.
 void operation_double(double d)
          Proxied event with primitive double parameter.
 void operation_int(int i)
          Proxied event with primitive integer parameter.
 void operation_null()
          Proxied event with no parameters.
 void operation_string(java.lang.String s)
          Proxied event with String parameter.
 void start()
          Begin benchmark.
 

Method Detail

start

void start()
Begin benchmark.


finish

void finish()
End benchmark.


operation_null

void operation_null()
Proxied event with no parameters.


operation_int

void operation_int(int i)
Proxied event with primitive integer parameter.

Parameters:
i - dummy int

operation_double

void operation_double(double d)
Proxied event with primitive double parameter.

Parameters:
d - dummy double

operation_string

void operation_string(java.lang.String s)
Proxied event with String parameter.

Parameters:
s - dummy string