Package lejos.remote.ev3
Interface RMIKeys
-
- All Superinterfaces:
java.rmi.Remote
- All Known Implementing Classes:
RMIRemoteKeys
public interface RMIKeys extends java.rmi.Remote
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddiscardEvents()intgetButtons()intgetKeyClickLength()intgetKeyClickTone(int key)intgetKeyClickVolume()intreadButtons()voidsetKeyClickLength(int len)voidsetKeyClickTone(int key, int freq)voidsetKeyClickVolume(int vol)intwaitForAnyEvent()intwaitForAnyEvent(int timeout)intwaitForAnyPress()intwaitForAnyPress(int timeout)
-
-
-
Method Detail
-
discardEvents
void discardEvents() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
waitForAnyEvent
int waitForAnyEvent() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
waitForAnyEvent
int waitForAnyEvent(int timeout) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
waitForAnyPress
int waitForAnyPress(int timeout) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
waitForAnyPress
int waitForAnyPress() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getButtons
int getButtons() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
readButtons
int readButtons() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
setKeyClickVolume
void setKeyClickVolume(int vol) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getKeyClickVolume
int getKeyClickVolume() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
setKeyClickLength
void setKeyClickLength(int len) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getKeyClickLength
int getKeyClickLength() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
setKeyClickTone
void setKeyClickTone(int key, int freq) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getKeyClickTone
int getKeyClickTone(int key) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
-