Java Doc for MessageListener.java in  » 6.0-JDK-Modules » j2me » javax » wireless » messaging » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » javax.wireless.messaging 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.wireless.messaging.MessageListener

MessageListener
public interface MessageListener (Code)
The MessageListener interface provides a mechanism for the application to be notified of incoming messages.

When an incoming message arrives, the notifyIncomingMessage() method is called. The application MUST retrieve the message using the receive() method of the MessageConnection. MessageListener should not call receive() directly. Instead, it can start a new thread which will receive the message or call another method of the application (which is outside of the listener) that will call receive(). For an example of how to use MessageListener, see A Sample MessageListener Implementation.

The listener mechanism allows applications to receive incoming messages without needing to have a thread blocked in the receive() method call.

If multiple messages arrive very closely together in time, the implementation has the option of calling this listener from multiple threads in parallel. Applications MUST be prepared to handle this and implement any necessary synchronization as part of the application code, while obeying the requirements set for the listener method.

A Sample MessageListener Implementation

The following sample code illustrates how lightweight and resource-friendly a MessageListener can be. In the sample, a separate thread is spawned to handle message reading. The MIDlet life cycle is respected by releasing connections and signalling threads to terminate when the MIDlet is paused or destroyed.

 // Sample message listener program.
 import java.io.IOException;
 import javax.microedition.midlet.*;
 import javax.microedition.io.*;
 import javax.wireless.messaging.*;
 public class Example extends MIDlet implements MessageListener {
 MessageConnection messconn;
 boolean done;
 Reader reader;
 // Initial tests setup and execution.
 public void startApp() {
 try {
 // Get our receiving port connection.
 messconn = (MessageConnection)
 Connector.open("sms://:6222");
 // Register a listener for inbound messages.
 messconn.setMessageListener(this);
 // Start a message-reading thread.
 done = false;
 reader = new Reader();
 new Thread(reader).start();
 } catch (IOException e) {
 // Handle startup errors
 }
 }
 // Asynchronous callback for inbound message.
 public void notifyIncomingMessage(MessageConnection conn) {
 if (conn == messconn) {
 reader.handleMessage();
 }
 }
 // Required MIDlet method - release the connection and
 // signal the reader thread to terminate.
 public void pauseApp() {
 done = true;
 try {
 messconn.close();
 } catch (IOException e) {
 // Handle errors
 }
 }
 // Required MIDlet method - shutdown.
 // @param unconditional forced shutdown flag
 public void destroyApp(boolean unconditional) {
 done = true;
 try {
 messconn.setMessageListener(null);
 messconn.close();
 } catch (IOException e) {
 // Handle shutdown errors.
 }
 }
 // Isolate blocking I/O on a separate thread, so callback
 // can return immediately.
 class Reader implements Runnable {
 private int pendingMessages = 0;
 // The run method performs the actual message reading.
 public void run() {
 while (!done) {
 synchronized(this) {
 if (pendingMessages == 0) {
 try {
 wait();
 } catch (Exception e) {
 // Handle interruption
 }
 }
 pendingMessages--;
 }
 // The benefit of the MessageListener is here.
 // This thread could via similar triggers be
 // handling other kind of events as well in
 // addition to just receiving the messages.
 try {
 Message mess = messconn.receive();
 } catch (IOException ioe) {
 // Handle reading errors
 }
 }
 }
 public synchronized void handleMessage() {
 pendingMessages++;
 notify();
 }
 }
 }
 

 





Method Summary
public  voidnotifyIncomingMessage(MessageConnection conn)
     Called by the platform when an incoming message arrives to a MessageConnection where the application has registered this listener object.

This method is called once for each incoming message to the MessageConnection.

NOTE: The implementation of this method MUST return quickly and MUST NOT perform any extensive operations.




Method Detail
notifyIncomingMessage
public void notifyIncomingMessage(MessageConnection conn)(Code)
Called by the platform when an incoming message arrives to a MessageConnection where the application has registered this listener object.

This method is called once for each incoming message to the MessageConnection.

NOTE: The implementation of this method MUST return quickly and MUST NOT perform any extensive operations. The application SHOULD NOT receive and handle the message during this method call. Instead, it should act only as a trigger to start the activity in the application's own thread.


Parameters:
  conn - the MessageConnection where the incomingmessage has arrived



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.