Back to project page Soutils.
The source code is released under:
MIT License
If you think the Android project Soutils listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** Contains all classes related to the messaging system of Soutils. In Soutils * everything is centered around the Observer pattern. Please give this pattern * a quick look if you don't know it already. (http://en.wikipedia.org/wiki/Observer_pattern) * /*w w w . j a v a2 s .c om*/ * In a nutshell, all threads in charge of communicating, beaconing, filetransfering * are Observables (a.k.a. Subjects) to which Observers can register. If the observable * receives some new information, all registered observers will be notified using the * method provided via the SoutilsObserver interface. * * The messages itself are represented by the SoutilsMessage wrapper */ package com.jeromewagener.soutils.messaging;