Package jmri.jmrix.loconet.locormi
Interface LnMessageBufferInterface
-
- All Superinterfaces:
java.rmi.Remote
- All Known Implementing Classes:
LnMessageBuffer
public interface LnMessageBufferInterface extends java.rmi.Remote
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear()
void
disable(int mask)
void
enable(int mask)
java.lang.Object[]
getMessages(long timeout)
void
sendLocoNetMessage(LocoNetMessage m)
-
-
-
Method Detail
-
enable
void enable(int mask) throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
-
disable
void disable(int mask) throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
-
clear
void clear() throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
-
getMessages
java.lang.Object[] getMessages(long timeout) throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
-
sendLocoNetMessage
void sendLocoNetMessage(LocoNetMessage m) throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
-
-