| java.lang.Object com.sun.jumpimpl.module.multimedia.MultimediaModuleImpl
MultimediaModuleImpl | public class MultimediaModuleImpl implements JUMPModule,JUMPEventHandler(Code) | | Implementation of Multimedia module.
This class performs the following activities:
- starts native file system monitoring;
- listens to multimedia events from the platform;
- notifies related isolates via JUMP messages.
|
Method Summary | |
public void | handleEvent(int id, byte[] data) Handles incoming events from event queue module. | public void | load(Map config) Loads the Multimedia module. | public void | unload() Unloads the Multimedia module. |
MESSAGE_TYPE | final public static String MESSAGE_TYPE(Code) | | Message type for Multimedia events.
|
MM_EVENT | final public static String MM_EVENT(Code) | | Message ID for notifications from Multimedia monitor.
|
handleEvent | public void handleEvent(int id, byte[] data)(Code) | | Handles incoming events from event queue module. All native events
related to Multimedia should be delivered here.
Parameters: id - event identifier. Parameters: data - event data. |
load | public void load(Map config)(Code) | | Loads the Multimedia module. Performs necessary initialization to start
monitoring Multimedia events.
Parameters: config - configuration data (ignored). |
unload | public void unload()(Code) | | Unloads the Multimedia module.
|
|
|