
org.jpos.q2.iso.RemoteQMUX Maven / Gradle / Ivy
/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2013 Alejandro P. Revilla
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package org.jpos.q2.iso;
import java.rmi.Remote;
import java.rmi.RemoteException;
import org.jpos.iso.ISOException;
import org.jpos.iso.ISOMsg;
import org.jpos.iso.ISOResponseListener;
/**
* RMI based QMUX proxy
*
* @author Mark Salter
* @version $Revision: 2854 $ $Date: 2010-01-02 10:34:31 +0000 (Sat, 02 Jan 2010) $
* @since 1.6
* @see QMUX
*/
public interface RemoteQMUX extends Remote {
/**
* @param m message to send
* @param timeout time to wait for a message
* @return received message or null
* @throws ISOException
*/
public ISOMsg request (ISOMsg m, long timeout) throws ISOException, RemoteException;
public void request (ISOMsg m, long timeout, ISOResponseListener r, Object handBack)
throws ISOException, RemoteException;
/**
* @return true if connected
*/
public boolean isConnected() throws RemoteException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy