KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > rmi > interfaces > _RmiWriter


1 package com.daffodilwoods.rmi.interfaces;
2
3  import java.io.*;
4  import java.rmi.*;
5 public interface _RmiWriter extends Remote{
6     void writeChars(char[] chars,int offset,int len) throws IOException,RemoteException;
7     void flush() throws IOException , RemoteException ;
8     void close() throws IOException , RemoteException ;
9 }
10
Popular Tags