KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.daffodilwoods.rmi.interfaces;
2
3  import java.rmi.*;
4  import java.io.*;
5 public interface _RmiOutputStream extends Remote{
6
7     void write(byte b[], int off, int len) throws IOException,RemoteException ;
8     void flush() throws IOException,RemoteException ;
9     void close() throws IOException,RemoteException ;
10
11 }
12
Popular Tags