Newer
Older
masaya_77 / src / j4 / Pi.java
@Motoki Miura Motoki Miura on 22 Sep 2020 571 bytes first commit for NWP exp
package j4;
// RMIによる分散処理プログラムの実装例
// (1)リモートサービスのインタフェース定義ファイル

// Pi.java Piインタフェース
// このインタフェースは、PiImplクラスのためのインタフェースです

// ライブラリの利用
import java.rmi.Remote;
import java.rmi.RemoteException ;
import java.rmi.server.ServerNotActiveException ;

// Piインタフェース
public interface Pi extends Remote{
    long putPi(long maxloopcount) throws RemoteException, ServerNotActiveException ;
}