All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wings.comet.RemoteConnectionSet Maven / Gradle / Ivy

The newest version!
package org.wings.comet;

import java.rmi.Remote;
import java.rmi.RemoteException;

interface RemoteConnectionSet extends Remote {

    public boolean contains(Object o) throws RemoteException;

    public boolean add(String s) throws RemoteException;

    public boolean remove(Object o) throws RemoteException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy