com.flat502.rox.demo
Interface RMIServerInterface

All Known Implementing Classes:
RMIAsyncServerDemo, RMISyncServerDemo

public interface RMIServerInterface

A common interface shared between RMIClientDemo, RMIAsyncServerDemo and RMISyncServerDemo.

A common interface is essential because under the hood the client-side proxying functionality relies on Java's dynamic proxy functionality (Proxy) and this is built around interfaces.


Method Summary
 java.util.Date getDate()
           
 java.lang.String getVersionInfo(boolean verbose)
           
 int sum(int[] list)
           
 

Method Detail

sum

int sum(int[] list)

getVersionInfo

java.lang.String getVersionInfo(boolean verbose)

getDate

java.util.Date getDate()