WO2005053222A2 - Mobile hub and managing events in a mobile hub - Google Patents

Mobile hub and managing events in a mobile hub Download PDF

Info

Publication number
WO2005053222A2
WO2005053222A2 PCT/IB2004/003744 IB2004003744W WO2005053222A2 WO 2005053222 A2 WO2005053222 A2 WO 2005053222A2 IB 2004003744 W IB2004003744 W IB 2004003744W WO 2005053222 A2 WO2005053222 A2 WO 2005053222A2
Authority
WO
WIPO (PCT)
Prior art keywords
event
mobile hub
entities
events
buffer
Prior art date
Application number
PCT/IB2004/003744
Other languages
French (fr)
Other versions
WO2005053222A3 (en
Inventor
Dirk Husemann
Michael E. Nidd
Jonathan T. Waddilove
Original Assignee
International Business Machines Corporation
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corporation filed Critical International Business Machines Corporation
Priority to EP04798873A priority Critical patent/EP1687947B1/en
Priority to JP2006540646A priority patent/JP4912152B2/en
Publication of WO2005053222A2 publication Critical patent/WO2005053222A2/en
Publication of WO2005053222A3 publication Critical patent/WO2005053222A3/en

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04WWIRELESS COMMUNICATION NETWORKS
    • H04W88/00Devices specially adapted for wireless communication networks, e.g. terminals, base stations or access point devices
    • H04W88/14Backbone network devices
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L12/00Data switching networks
    • H04L12/28Data switching networks characterised by path configuration, e.g. LAN [Local Area Networks] or WAN [Wide Area Networks]
    • GPHYSICS
    • G16INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS
    • G16HHEALTHCARE INFORMATICS, i.e. INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR THE HANDLING OR PROCESSING OF MEDICAL OR HEALTHCARE DATA
    • G16H40/00ICT specially adapted for the management or administration of healthcare resources or facilities; ICT specially adapted for the management or operation of medical equipment or devices
    • G16H40/60ICT specially adapted for the management or administration of healthcare resources or facilities; ICT specially adapted for the management or operation of medical equipment or devices for the operation of medical equipment or devices
    • G16H40/63ICT specially adapted for the management or administration of healthcare resources or facilities; ICT specially adapted for the management or operation of medical equipment or devices for the operation of medical equipment or devices for local operation
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04WWIRELESS COMMUNICATION NETWORKS
    • H04W24/00Supervisory, monitoring or testing arrangements
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04WWIRELESS COMMUNICATION NETWORKS
    • H04W28/00Network traffic management; Network resource management
    • H04W28/02Traffic management, e.g. flow control or congestion control
    • H04W28/10Flow control between communication endpoints
    • H04W28/14Flow control between communication endpoints using intermediate storage

Definitions

  • the invention relates to a mobile hub and to a method for managing events in a mobile hub.
  • the concept of personal mobile gateways or personal mobile hubs revolves around the concept of a mobile device typically having a central processing unit CPU, a random access memory RAM, a non volatile NV storage, an interface to a local wireless network technology (e.g., Bluetooth) and/or an interface to a wireless wide area network technology (e.g., GSM/GPRS).
  • a local wireless network technology e.g., Bluetooth
  • a wireless wide area network technology e.g., GSM/GPRS
  • An attractive application area of mobile hubs is the health care/medical/pharmaceutical application area where sensor and actuator devices connect via, for example, Bluetooth to the mobile hub.
  • Each sensor periodically transmits a sensor value to the mobile hub or is polled by an adapter running on the mobile hub.
  • Actuator devices similarly receive instructions from the mobile hub device from time to time by polling the mobile hub or by being connected by an adapter running on the mobile hub.
  • the sensor data needs to be analysed, perhaps correlated to data of other sensor devices, and might also be relayed to network based services.
  • the data is of a discrete nature, and each sensor value can be treated as an event.
  • each sensor submits a sequence of events via the wireless communication link to the mobile hub.
  • mobile hub internal processes can generate events.
  • events can be necessary to make these internally created events or the events received from external devices available to consumers on the mobile hub and/or even mobile hub external services.
  • event engine also called event manager.
  • Event systems as such are known for quite some time now: There are synchronous event systems and asynchronous event systems.
  • events are propagated along a hierarchical path from the leaves up to the root. Each entity operates on a received event in turn.
  • asynchronous event systems are the Linda Tuplespace system or IBM's T-Spaces. There, events are posted to a central "blackboard" - which is implemented as a database - by event sources. Event consumers then search through the blackboard specifying patterns or search expressions for the tuples they are interested in.
  • the main advantage of synchronous event systems is that each registered entity - and entities have to register - is guaranteed to be called once. At the end of the invocation chain one knows for sure that a certain event has been dealt with. Also, the synchronous event system by definition imposes a certain order in which registered events are called: By using appropriate return values, it is possible to influence delivery of events to entities later in the processing chain.
  • This advantage of the synchronous model is at the same time its biggest disadvantage: Input/Output (I O) operations, for example, can take a long time to complete. An entity whose event handler is invoked and which initiates an I/O operation as part of the event handler might consequently become blocked and, thus, block the whole synchronous event system. Also, the event handling entity might become blocked before being invoked, and thus, can also block the event system.
  • I O Input/Output
  • Asynchronous event systems do not suffer from this particular problem: Here, all event listeners are either informed on the new event simultaneously or interested entities regularly poll the event system for newly arrived events themselves. On the other hand, with asynchronous event systems it is rather difficult to state event closure - i.e. that all entities have seen the event - and almost impossible to enforce an order. Also, with tuple/blackboard based systems, there is a problem of having to support a database and of having to do garbage collection on the posted events.
  • asynchronous event systems can be characterized as soup model or pond model: Events are dumped into a global soup or pond. Event subscribers then search the soup/pond.
  • synchronous event systems can be characterized as a a flash model: An event is flashed to all subscribed entities.
  • Mobile devices such as mobile hubs - that can for example be a mobile phone platform with a wireless wide area network component (WWAN, e.g., GPRS), a wireless local area network component (WLAN, e.g., Bluetooth), and a CPU with local volatile and non- volatile storage - are characterized by their hub nature.
  • WLAN wireless wide area network component
  • WLAN wireless local area network component
  • CPU CPU with local volatile and non- volatile storage -
  • External entities such as sensors, devices or appliances connect via the WLAN to the mobile hub and provide data to software components running on the hub. These or other software components process the received data in some way and then provide data via the WWAN to services running somewhere in the Internet.
  • Synchronous event systems are unsuitable to perform the processes required for a mobile hub due to the inherent I/O operations that have to be carried out.
  • Asynchronous event systems on the other hand are not particular useful either, as they require a database system to be maintained on the mobile device itself. Such a database would require a lot of resources on a mobile device that typically is characterized by providing scarce resources due to its portable properties.
  • a mobile hub comprising a circular buffer for storing events, a timer for monitoring the storage period of an event stored in the buffer, and an event manager designed for discarding an event from the buffer when a time-out of the associated timer is exceeded.
  • a corresponding method for managing events in a mobile hub comprising the steps of storing an event in a circular buffer, monitoring a storage period of a stored event, and discarding the event from the buffer when the storage period exceeds a time-out.
  • the mobile hub represents a mobile device that is used as a central device interconnecting entities that are connected to the mobile hub in a wireless fashion.
  • the mobile hub thus accepts the function of a mobile network node.
  • the functions of a mobile hub can e.g. be implemented in a stand alone device, or be integrated into a mobile phone.
  • External entities can connect or be connected to the mobile hub and deliver or receive data. Examples of such entities are sensors or actuators. Messages received by the mobile hub are called “events" in the context of the invention.
  • the core of a mobile hub is called event engine or event manager.
  • the event manager can be implemented in hardware or in software or in a combination of hardware and software. This event manager is designed for handling events in the mobile hub, and in particular for reacting on arriving events and/or for communicating events to the hub's outside world. Events are typically posted to the event engine by adapters which will be explained later in more detail.
  • the event manager stores the event in a small, limited, temporary buffer and sets up a timer for the event.
  • the starting point of the timer is preferably the point in time when the event is stored in the buffer but need not necessarily be.
  • the timer can be implemented in hardware or in software or in a combination of hardware or software.
  • the event manager discards the event from the buffer at the latest when the timer exceeds a time-out. When the event is already discarded before the time-out of the timer is reached as will be shown in some preferred embodiments of the invention, then the timer will typically be reset and does not reach the time-out anyway.
  • This sort of event handling ensures, that an event cannot block the limited buffer cells for other events that have to be handled by the event manager. As a consequence, an event can only be present and stored in the buffer for a maximum time / storage period which is determined by the timer's time-out.
  • An event might be stored in the buffer immediately after arriving at the mobile hub. Alternatively, the event might first be stored temporarily at a temporary storage or a cache and afterwards transferred to the circular buffer.
  • the circular buffer provides limited space for storing events. In one preferred embodiment, less the 200 events can be stored in the circular buffer, in another preferred embodiment less than 100 events, in yet another preferred embodiment the size of the circular buffer can be configured depending on the application.
  • the time-out of the timer is preferably the latest point in time to discard a stored event from the buffer.
  • the event engine together with or a short time before or after storing an event in the buffer and starting the corresponding timer, notifies all or selected entities of the arrival of the event.
  • the notification of registered entities can also go along with the arrival of the event at the mobile hub, and not necessarily with the arrival of the event in the buffer, or with any other action related to this event.
  • the notification preferably comprises the event. If entities should only selectively be notified, the event manager notifies all entities according to a registration list. Entities can register at the resistration list to be notified on all or on selected events only. E.g.
  • external entity sensor A registers to be notified upon any event arriving at the mobile hub from sensor B, as a measured value from sensor B should trigger a measurement at sensor A.
  • Entities in general can be external entities and/or mobile hub internal entities. Regardless of the form of an entity, entities that have seen such a notification reply asynchronously with an acknowledgement message ACK. If either all entities that were notified - and that consequently had previously registered with the registration list in order to become notified - have sent an ACK message or else if the timer for this event expired the event manager simply discards the event.
  • This mechanism prevents the mobile hub from being blocked by stored events where the event engine cannot be sure whether this event already was attended to all interested entities.
  • a database including complex access is not required.
  • the event manager manages the event circulation in the buffer following fixed rules as stated above and thus, prevents the buffer from being blocked.
  • the event handling solution is efficient, highly adaptable and extensible. As no event can block the buffer any more, a small scale buffer can be used for the mobile hub which in turn keeps the mobile hub handy and portable.
  • the mobile hub is in particular resistant against blocking events when all the stored events comprise a corresponding timer for monitoring the storage period of the associated event. Then, every event resides only a limited maximum time in the buffer which corresponds to the time-out of the associated timer before it will be discarded.
  • the time-out of a timer can preferably be a variable time-out that depends on an event arrival rate. The more events arrive at the mobile hub per time unit, the shorter the time-out is. The less events arrive at the mobile hub, the longer the time-out can be without deteriorating the performance of the mobile hub.
  • the time-out can also differ for different applications running on the mobile hub. Then, a limited part of the buffer can e.g. be assigned to a particular application which application can afford a longer time-out due to rarely arriving events, while the remaining part of the buffer is reserved for events belonging to another application with a more frequent arrival rate and thus a shorter time-out.
  • the engine manager can be responsible for classifying events to applications and filling the respective buffer parts accordingly.
  • the mobile hub preferably comprises hardware elements according to the mobile hub mentioned in the prior art.
  • the mobile hub preferably comprises an interface to a wireless local area network for receiving and/or transmitting events from/to external entities.
  • a wireless local area network for receiving and/or transmitting events from/to external entities.
  • Such access to a WLAN can e.g. comprise access to a WLAN according to the 802.11 specification, and/or comprise access to Bluetooth.
  • the mobile platform preferably comprises an interface to a wireless wide area network WWAN such as to a GSM, GRPS, or UMTS network.
  • External entities such as sensors, devices or appliances can connect via the WLAN and/or the WWAN to the mobile hub and provide data to software components running on the hub.
  • External devices can also be recipients of data transmitted via the WLAN and/or the WWAN.
  • external devices can either be event sources or event comsumers or both event sources and event consumers at the same time.
  • Mobile hub internal entities are e.g. software components as mentioned above. Such internal entities work on events, and can provide a variety of functions: An internal entity might inlcude the function of a router, another internal entity might include the function of a server, and so on.
  • An internal entity processes received events in some way. It e.g. provides processed data via the WWAN to services running somewhere in the Internet.
  • the mobile hub preferably comprises adapters for converting an internal representation of an event into a representation of the event comprehensible to an external entity and vice versa. Different external entities might require different adapters in the mobile hub.
  • annotating events in the system.
  • Events which typically follow a fixed notation scheme can preferably be annotated by entities of the system. This means that preferably internal entities but also external entities can annotate a received event in order to initiate further action.
  • Such event together with the annotation is typically sent back to the event manager of the mobile hub and is handled accordingly:
  • the event manager preferably distributes the annotation to registered entities.
  • Annotating events is an easy and flexible way for enhancing the communication performance of the entire system.
  • Such annotation can preferably be attached to any event sent to the event manager for proper handling.
  • an acknowledgement message can be the carrier of an annotation added by an entity.
  • the entire event including the annotation is distributed by the event manager.
  • an event model wherein the appearance of an event follows an event notation which notation comprises different fields per event, each field specifying a certain category of information. Preferably, at least some of the fields follow a hierarchy.
  • an event model facilitates the handling of events inside the mobile hub, as in particular filters for events can be implemented easily.
  • a computer program element which computer program element comprises code means for performing a method according to any one of the method claims when loaded in the processing unit of a mobile hub.
  • FIG. 1 a diagram of a system comprising a mobile hub according to the present invention
  • FIG. 2 a schematic diagram of a mobile hub, in accordance with an embodiment of the present invention
  • FIG. 3 another schematic diagram of a mobile hub, in accordance with an embodiment of the present invention.
  • FIG. 4 a diagram of example event flows, in accordance with an embodiment of the present invention.
  • FIG. 5 an event structure, accordance with an embodiment of the present invention.
  • FIG. 1 illustrates a diagram of a system comprising a mobile hub according to the present invention.
  • a typical mobile hub can include a runtime system such as the Symbian OS, or Linux, or a PersonalJava r ⁇ or MIDP JavaTM runtime environment and appropriate WLAN and/or WWAN components (Java, and/or PesonalJava MIDP Java are trademarks of Sun Corporation).
  • a runtime system such as the Symbian OS, or Linux, or a PersonalJava r ⁇ or MIDP JavaTM runtime environment and appropriate WLAN and/or WWAN components (Java, and/or PesonalJava MIDP Java are trademarks of Sun Corporation).
  • the mobile hub 1 according to FIG. 1 is actually communicating to two external entities 2 and 3.
  • External entity 2 is a sensor for monitoring medication compliance (the device monitors a blister pack) and is connected to the mobile hub 1 via the wireless local area network Bluetooth.
  • External entity 3 is a server running a remote patient monitoring application and connected to the mobile hub via the wireless wide area network GPRS.
  • a medical administrator e.g., doctor, nurse, etc.
  • the patient monitoring application 3 sends the medication regime (e.g., as an ICAL or VCAL calendar specification) via GPRS to a network adapter running on the mobile hub 1.
  • the network adapter injects the medication regime into the event engine which redistributes it to all registered adapters: one of which is the medication compliance monitor adapter which sends the information (possible converted into a proprietary format or just as is) to the medication compliance monitor via a Bluetooth link.
  • the medication compliance monitor 2 will sound an alarm to the patient once the time to take the medication has been reached. If the patient takes the medication from blister pack contained in the medication compliance monitor 2, the compliance monitor 2 will connect to the mobile hub 2 via Bluetooth and transmit a "blister opened”event (containing the time the blister was opened and possible other information) to the medication compliance adapter on the mobile hub 2.
  • the medication compliance adapter converts the sensor information into a standardized event format and injects it into the event engine, which forwards the event to all other registered adapters.
  • the GPRS network adapter submits the medication event via GPRS to the remote patient monitoring application 3.
  • the health care/medical/pharmaceutical application area where sensor and actuator devices - collectively called external entities - connect via, for example, Bluetooth to the mobile hub is an attractive application area of mobile hubs.
  • Each sensor periodically transmits a sensor value to the mobile hub.
  • the sensor data needs to be analysed, perhaps correlated to the data of other sensor devices, and might also be relayed to network based services.
  • the data is of a discrete nature and each sensor value can be treated as an event.
  • each sensor submits a sequence of events via the wireless communication link to the mobile hub.
  • mobile hub internal processes / entities can generate events.
  • the mobile hub needs an event engine, also called event manager.
  • FIG. 2 shows schematically how an event engine/event manager is integrated in a mobile hub.
  • the mobile hub 1 according to FIG. 2 comprises a circular buffer 11, an event engine 12, a timer unit 13, a cache 14, adapters 15 and 16 and an internal entity 17.
  • events - which are basically messages that trigger an reaction in the system - are the basic information/data bearing carriers.
  • An event can be generated by external entities such as entities 2 or 3 according to FIG. 2.
  • the mobile hub 1 has a need to transform the external representation of an event into an representation that is comprehensible inside the mobile hub.
  • an external entity exchanging events with the mobile hub 1 has a need to convert the mobile hub internal representation of an event into a representation that is comprehensible for the external entity. This conversion is the primary job of adapters.
  • adapters 15 and 16 are located as intermediary between external devices 2 and 3 and the internal event handling system of the mobile hub 1. Adapters generally interact with external entities and mobile hub applications.
  • an event can also be generated, modified, analysed or worked on by mobile hub internal entities, such as internal entity 17 according to FIG. 2.
  • an event arrives at the mobile hub either submitted from an external entity or created by an internal entity, the event is cached in cache 14.
  • the event manager 12 then transfers event by event to the circular buffer 11. Events are only transferred to the circular buffer once a memory cell of the circular buffer 11 is ready to accept a new event. This event handling requires a mechanism that grants a non-blocking event processing in the circular buffer, as the buffer cannot accept an unlimited number of events due to its limited size.
  • a mechanism for achieving a buffer 11 with non-blocking properties is the use of timers.
  • the timer unit 2 provides a timer for every event actually stored in the buffer 11.
  • a time-out is defined.
  • the time-out can be defined in many different ways.
  • a time-out can be defined on basis of an anticipation of events to be handled or events expected to arrive per time unit.
  • the time-out value can also be implemented as variable time-out value which is basically dependent on the arrival rate of events to be handled. According to this latest embodiment, a measurement for measuring the arrival rate can be introduced to the mobile hub.
  • the time-out basically defines the maximum period of time an event can occupy a memory cell in the buffer 11. By the latest when the time-out for a particular event is exceeded, this particular event is discarded from the buffer in order to have the memory cell released for another event to be handled.
  • the timer is set when the event is stored in the buffer 11. In another embodiment, the timer is set when the event arrives at the mobile hub. While in the first embodiment, an event can occupy the buffer for a fixed time which is the time-out time, the time-out time of the second embodiment defines a maximum stay of an event in the mobile hub, wherein the effective time in the buffer might be little less than the time-out time due to the time needed for handling the event in the mobile hub but outside the buffer.
  • the time-out unit 13 provides timers for every event stored in the buffer.
  • the event manager 12 is responsible for storing events in the buffer 11, for setting timers in the timer unit 13, and for discarding events from the buffer 11 when the time-out of the respective timer was exceeded.
  • a registration list 19 is established in the mobile hub 1.
  • the registration list 19 provides information, which sort of event has to be communicated whereto. For example, an entry in the registration list 19 might look like: "All events coming from an external sensor have to be sent to the internal agent 17 for further processing.” or "All events coming from the internal agent have to be forwarded to the SMS adapter 16 of the mobile hub in order to be communicated via GPRS to an external entity.”. Entities can register or subscribe with the registration list and indicate in which sort of events they are interested in.
  • the event manager 12 has access to the registration list 19 and handles events accordingly once an event is stored in the buffer 11. Therefore, together with storing an event in the buffer 11, the corresponding timer is set and the event is transmitted to all interested entities according to the registration list 19. It is not necessarily the event itself that is transmitted to such registered entities. In more general words, the registered entities are notified on the event.
  • the notification might be a message not identical or identical to the event that triggered a notification.
  • a notification is triggered upon the arrival of a new event.
  • the arrival can be interpreted as arrival in the circular buffer 11, or as arrival at the mobile hub, or as arrival at any time in between.
  • the notification will be triggered when the event is stored or short time before or afterwards, since the event has to raise the attention of the event manager 12 first which then looks up the registration list 19 for determining the recipients of a notification upon this event.
  • An implementation of the mobile hub 1 provides a way of returning acknowledgement messages back to the event manager 12 - either directly or via the cache 14 - upon the receipt of a notification.
  • the event manager 12 can monitor which entities - internal or external ones - have acknowledged the receipt of a notification. When all the recipients have acknowledged the receipt of the notification, the event that has triggered the notifications is not needed anymore from an event handling point of view. Internal or external entities might take further processing steps in response to the notification. However, in an event based system, if needed these entities simply transmit a new event to the mobile 1 hub for further handling by the event manager 12 once they have to communicate further information to any entity of the interconnected mobile system. Such event will then be handled the same way as described above.
  • an event will only be discarded from the buffer upon receipt of an acknowledgement message ACK from all the notified entities - and thus when the last ACK will be received by the event engine 12 - before the time-out of the corresponding timer.
  • the event is discarded from the buffer upon the timer exceeding its time-out. This prevents the buffer from being blocked by events which recipients of the event related notifications are unable to acknowledge the notification for what reason ever - breakdown, disconnected mode, etc..
  • Entities can reply with an event annotation instead of an ACK or with an annotated ACK to augment the stored event.
  • the event manager 12 updates the event stored in the buffer 11 with the annotation, resets the timer for that event and re-notifies all subscribed entities except the one that annotated the event.
  • Annotating events in general provides the possibility that any entity/subscriber can provide additional data to an existing event - and thus annotate it.
  • the principle behind this annotation mechanism is that all annotations are made available to all other interested entities. This mechanism helps improving the speed of handling events by the event manager. However, the right to annotate cannot only be granted to notified entities. Also adapters could comment on events that pass by, if needed.
  • FIG. 2 there are two events actually stored in the buffer 11: a "green event” and a "red event".
  • the red event was posted by adapter 17 to the event engine 12 (dotted line between 17 and 12).
  • the event engine 12 entertains a registry of adapters 14.
  • the event engine 12 notifies the other subscribed adapters 15 and 16 of the red event.
  • Adapter 16 simply acknowledges the receipt of the red event; adapter 15 annotes the red event and returns that with the acknowledgement to the event engine 12.
  • the event engine 12 redistributes the red event and the annotation to the other adapters, in this case to adapter 16.
  • Adapter 16 again acknowledges the receipts of the annoted event.
  • the event engine 12 can remove the red event from the circular buffer. For the green event an event timeout ocurred an the event engine removes it from the circular buffer as well then.
  • Adapters, and also internal entities can provide event filters (e.g., a filter pattern) to indicate their interest in just certain kind of events, the event engine will only forward those events to a specific adapter that match the filter pattern. Also, the event engine will not add any adapter whose filter pattern did not match an event to the set of notified parties for that particular event.
  • event filters e.g., a filter pattern
  • the system can be adapted to different usage scenarios and also communicate changes and enable adapters to react.
  • FIG. 3 illustrates another mobile hub 1 schematically.
  • an event manager 12 handles events by making use of a circular buffer 11 for temporary storing events.
  • the timer unit 13 provides timers for all stored events, while the registration lists provides information to the event manager 12 which events stored in the circular buffer 11 shall be sent to which interested entities.
  • Block 10 indicates the hub's operating system.
  • References 101 - 104 depict elements from a more hardware point of view: Block 101 represents the GRPS interface, block 102 the Bluetooth interface, whereas block 103 represents the storage means of the mobile hub.
  • an external device such as external entity 2 is connected to the mobile hub via the Bluetooth interface 102.
  • an adapter assigned to this external device for transforming event notation which is adapter 15 according to the embodiment of FIG. 3.
  • an adapter can be assigned to an entire interface or alternatively, to a particular entity.
  • the minimum API set that is required to access the mobile hub comprises instructions such as "registerO" for registering an entity, "deregister ()” for deregistering an entity, and "post ()” for posting events.
  • Exemplary adapters are e.g., one or more of which can be embodied in a mobile hub subject to the configuration and the needs of the hub:
  • a persistent storage adapter for interconnecting the mobile hub to a storage device, e.g. for backup purposes;
  • communication adapters such as WLAN adapter, SMS adapter, ....
  • Internal entities can e.g. be embodied as:
  • FIG. 4 shows a diagram of example event flows, in accordance with an embodiment of the present invention, with particular focus on the feature of annotating events.
  • a sensor which e.g. could be the external entity 2 according the diagram in FIG. 2 or FIG. 3 picks up a new value val i and transmits it to the mobile hub via Bluetooth.
  • This message is an event.
  • the corresponding sensor adapter - which could be adapter 15 according to FIG. 2 - converts the external representation of the event comprising the value val i into a hub internal representation of the event which representation shall e.g. be event O.l.x.y.z. Such a notation will be more fully explained with regard to FIG. 5.
  • the event in its new notation is injected by the sensor adapter into the event handling system of the mobile hub.
  • a registration list - e.g. the registration list 19 according to FIG.
  • the event manager notifies subscribed entities - i.e. agents and adapters.
  • a notification agent 17 of the mobile hub according to FIG. 2 returns the event - here the notification is identical to the event - together with an annotation to the event manager.
  • the annotation shall express that the "event should be replicated to the network", as the agent might have stated that the event is of interest to the network.
  • the registration list might provide an entry such as "if an event or an annotation explicitly provides an addressee, the interested entity is only this addressee" in order to enable appropriate notification.
  • the event engine notifies the subscribed entities which in this case is only the GSM/GPRS adapter.
  • the event engine sends the event to the corresponding net adapter which could be adapter 16 according to FIG. 2.
  • Net adapter 16 then converts the event into an SMS (short message service) and sends the SMS out.
  • FIG. 5 shows an event structure which is reflected in a corresponding event notation.
  • a taxonomy for categorizing events is introduced.
  • Sensor events report data to the system.
  • a temperature sensor posts temperature measurements
  • a GSM sensor reports an incoming phone call and the caller ID
  • a heart rate sensor reports a heartbeat, and so forth.
  • Actuator events in turn request an action to occur.
  • Actuator events indicate commands.
  • a store event would signal that the attached data element should be stored somewhere
  • a GSM phone call event would indicate that a GSM phone call should be started.
  • the first digit of an event notation indicates whether the event is a sensor event or an actuator event, wherein the sensor event class of events mentioned is indicated by a (0) in the first digit, and the actuator event class is indicated by a (1) in the first digit.
  • An event source can be an external or an internal one - always in relation to the mobile hub.
  • the domain can indicate what the event relates to, such as to the system in general, the phone subsystem, a medical domain, an automotive domain, etc..
  • the sensor/actuator classification uses the terms sensor and actuator in the widest possible meaning: A sensor can be a device that just provides a single bit of information but can also something quite complex, likewise an actuator can take a single bit of information and act on it or it can take a complex set of instrictions.
  • Each level provides a well-defined list of enumerated items.
  • "as.exin.dom.dev” for example provides an order in which events should be noted:
  • the first field of the tuple should indicate a value for the actuator/sensor event, the second field should indicate whether the event is coming from an internal or an external device, the third field indicated the content domain, and the fourth field indicates the type of the device.
  • an external medical heart beat sensor event could be addressed e.g. by the tuple 0.1.10.1, with the first 0 indicating that this event is generated by a sensor, the following 1 that it came from an external device, the following 10 indicating the medical domain, the final 1 characterizing a heart rate sensor.
  • the next level indicates that the data the heart beat sensor is providing are heart beat data.
  • the type of the data indicated on the fourth level are specified.
  • lower level entries can depend on upper level entries.
  • the entry on the lowest level shows that the heart beat is given on a time basis.
  • the other event tuple that is depicted in FIG. 5 provides an event delivering sensor data from an internal communication entity which is a scanner.
  • the scanner data indicate that a new device was discovered with its MAC address.
  • Some or all of such fields can be subject to a hierarchical system of fields.
  • the introduction of fields facilitate filtering events or skipping unknown events.
  • each event can carry with it a universal ID of the adapter that injected it into the event system as well as a timestamp noting the time of injection.
  • An event preferably consists of at least the event header (containing the UID, the event timestamp, and the event address). Optionally it contains subfields containing additional data.
  • An adapter/agent can on receipt of an event annotate the received event. If an event is annotated, the event engine will then redistribute that event to all subscribed agents/adapters. Optionally, the original source and the annotated source can be filtered out if bandwidth should be conserved.
  • any event notation described above represents an hub internal notation.
  • adapters have to be aware of the notation used since adapters are responsible for converting an external event notation into the internal one and vice versa.
  • internal entities in form of agents are also aware of the event notation used since agents process events.
  • it is for example easily to process events by filtering, such as only evaluating received events that start with a "0.1.10." in the first three fields and thus only deal e.g. with sensor data from medical sensors.
  • An agent might be specialized in that and have the corresponding procedures available for processing sensor data from medical sensors.
  • the benefit of using such a notation is that it is very easy to filter out events that an adapter is not interested in; for example, an adapter that is only interested in external medical sensor events can discard all events that do not have the 0.1.10 prefix; or it could discard information that it does not understand: if, for example, a new sensor would provide not only the timestamp of the heartbeat but also the current averaged rate, it would then be able to pick up the timestamped heartbeat data but just ignore the current average rate data.
  • the event handling system according to the present invention can preferably implemented on the Linux platform: Events can be stored in shared memory region. Event notifications can be accomplished by Unix System V messaging. Alternatively, the event handling system can be implemented on Symbian's mobile phone operating system. Here events are distributed via object invocation.

Abstract

A mobile hub is proposed, the mobile hub (1) comprising a circular buffer (11) for storing events, a timer for monitoring the storage period of an event stored in the buffer (11), and an event manager (12) designed for discarding an event from the buffer when a time-out of the associated timer is exceeded. As no event can block the buffer (11) any more a small scale buffer (11) can be used for the mobile hub (1).

Description

MOBILE HUB AND MANAGING EVENTS IN A MOBILE HUB
FIELD OF THE INVENTION
The invention relates to a mobile hub and to a method for managing events in a mobile hub.
BACKGROUND OF THE INVENTION
The concept of personal mobile gateways or personal mobile hubs revolves around the concept of a mobile device typically having a central processing unit CPU, a random access memory RAM, a non volatile NV storage, an interface to a local wireless network technology (e.g., Bluetooth) and/or an interface to a wireless wide area network technology (e.g., GSM/GPRS).
An attractive application area of mobile hubs is the health care/medical/pharmaceutical application area where sensor and actuator devices connect via, for example, Bluetooth to the mobile hub. Each sensor periodically transmits a sensor value to the mobile hub or is polled by an adapter running on the mobile hub. Actuator devices similarly receive instructions from the mobile hub device from time to time by polling the mobile hub or by being connected by an adapter running on the mobile hub. On the mobile hub the sensor data needs to be analysed, perhaps correlated to data of other sensor devices, and might also be relayed to network based services. Typically, the data is of a discrete nature, and each sensor value can be treated as an event. Thus, each sensor submits a sequence of events via the wireless communication link to the mobile hub. Likewise, mobile hub internal processes can generate events. Of course, it might be necessary to make these internally created events or the events received from external devices available to consumers on the mobile hub and/or even mobile hub external services. Thus, for handling events and distribute them the right way, the mobile hub needs an event engine, also called event manager. Event systems as such are known for quite some time now: There are synchronous event systems and asynchronous event systems.
In synchronous event systems, events are propagated along a hierarchical path from the leaves up to the root. Each entity operates on a received event in turn.
One of the best known examples of asynchronous event systems are the Linda Tuplespace system or IBM's T-Spaces. There, events are posted to a central "blackboard" - which is implemented as a database - by event sources. Event consumers then search through the blackboard specifying patterns or search expressions for the tuples they are interested in.
The main advantage of synchronous event systems is that each registered entity - and entities have to register - is guaranteed to be called once. At the end of the invocation chain one knows for sure that a certain event has been dealt with. Also, the synchronous event system by definition imposes a certain order in which registered events are called: By using appropriate return values, it is possible to influence delivery of events to entities later in the processing chain. This advantage of the synchronous model is at the same time its biggest disadvantage: Input/Output (I O) operations, for example, can take a long time to complete. An entity whose event handler is invoked and which initiates an I/O operation as part of the event handler might consequently become blocked and, thus, block the whole synchronous event system. Also, the event handling entity might become blocked before being invoked, and thus, can also block the event system.
Asynchronous event systems do not suffer from this particular problem: Here, all event listeners are either informed on the new event simultaneously or interested entities regularly poll the event system for newly arrived events themselves. On the other hand, with asynchronous event systems it is rather difficult to state event closure - i.e. that all entities have seen the event - and almost impossible to enforce an order. Also, with tuple/blackboard based systems, there is a problem of having to support a database and of having to do garbage collection on the posted events. "Java Message Service - A White Paper, December 2000", retrieved and accessed on the Internet http://www.prismtechnologies.com/English/Products/CORBA/Integration/whitepaperJms/jm s_BR_12_00.pdf on August 18, 2003, illustrates such an asynchronous event system based on the use of a database.
Hence, asynchronous event systems can be characterized as soup model or pond model: Events are dumped into a global soup or pond. Event subscribers then search the soup/pond. Likewise synchronous event systems can be characterized as a a flash model: An event is flashed to all subscribed entities.
Mobile devices such as mobile hubs - that can for example be a mobile phone platform with a wireless wide area network component (WWAN, e.g., GPRS), a wireless local area network component (WLAN, e.g., Bluetooth), and a CPU with local volatile and non- volatile storage - are characterized by their hub nature. External entities such as sensors, devices or appliances connect via the WLAN to the mobile hub and provide data to software components running on the hub. These or other software components process the received data in some way and then provide data via the WWAN to services running somewhere in the Internet.
Such a mobile hub is addressed in the brochure "IXI - Connect with style", retrieved and accessed on the Internet http://www.ixi.com/PDF/IXI_Brochure.pdf on August 18, 2003.
Synchronous event systems are unsuitable to perform the processes required for a mobile hub due to the inherent I/O operations that have to be carried out. Asynchronous event systems on the other hand are not particular useful either, as they require a database system to be maintained on the mobile device itself. Such a database would require a lot of resources on a mobile device that typically is characterized by providing scarce resources due to its portable properties.
Thus, there is a need for an event management system that is suitable for mobile devices and simultaneously able to deal with the complexities introduced by blocking TIO operations. SUMMARY OF THE INVENTION
According to one aspect of the present invention, there is provided a mobile hub, comprising a circular buffer for storing events, a timer for monitoring the storage period of an event stored in the buffer, and an event manager designed for discarding an event from the buffer when a time-out of the associated timer is exceeded.
According to another aspect of the invention, there is provided a corresponding method for managing events in a mobile hub, comprising the steps of storing an event in a circular buffer, monitoring a storage period of a stored event, and discarding the event from the buffer when the storage period exceeds a time-out.
The mobile hub represents a mobile device that is used as a central device interconnecting entities that are connected to the mobile hub in a wireless fashion. The mobile hub thus accepts the function of a mobile network node. The functions of a mobile hub can e.g. be implemented in a stand alone device, or be integrated into a mobile phone.
External entities can connect or be connected to the mobile hub and deliver or receive data. Examples of such entities are sensors or actuators. Messages received by the mobile hub are called "events" in the context of the invention.
The core of a mobile hub is called event engine or event manager. The event manager can be implemented in hardware or in software or in a combination of hardware and software. This event manager is designed for handling events in the mobile hub, and in particular for reacting on arriving events and/or for communicating events to the hub's outside world. Events are typically posted to the event engine by adapters which will be explained later in more detail. The event manager stores the event in a small, limited, temporary buffer and sets up a timer for the event. The starting point of the timer is preferably the point in time when the event is stored in the buffer but need not necessarily be. The timer can be implemented in hardware or in software or in a combination of hardware or software. The event manager discards the event from the buffer at the latest when the timer exceeds a time-out. When the event is already discarded before the time-out of the timer is reached as will be shown in some preferred embodiments of the invention, then the timer will typically be reset and does not reach the time-out anyway.
This sort of event handling ensures, that an event cannot block the limited buffer cells for other events that have to be handled by the event manager. As a consequence, an event can only be present and stored in the buffer for a maximum time / storage period which is determined by the timer's time-out.
An event might be stored in the buffer immediately after arriving at the mobile hub. Alternatively, the event might first be stored temporarily at a temporary storage or a cache and afterwards transferred to the circular buffer. The circular buffer provides limited space for storing events. In one preferred embodiment, less the 200 events can be stored in the circular buffer, in another preferred embodiment less than 100 events, in yet another preferred embodiment the size of the circular buffer can be configured depending on the application.
As indicated before, the time-out of the timer is preferably the latest point in time to discard a stored event from the buffer. According to a preferred embodiment, together with or a short time before or after storing an event in the buffer and starting the corresponding timer, the event engine notifies all or selected entities of the arrival of the event. However, the notification of registered entities can also go along with the arrival of the event at the mobile hub, and not necessarily with the arrival of the event in the buffer, or with any other action related to this event. The notification preferably comprises the event. If entities should only selectively be notified, the event manager notifies all entities according to a registration list. Entities can register at the resistration list to be notified on all or on selected events only. E.g. external entity sensor A registers to be notified upon any event arriving at the mobile hub from sensor B, as a measured value from sensor B should trigger a measurement at sensor A. Entities in general can be external entities and/or mobile hub internal entities. Regardless of the form of an entity, entities that have seen such a notification reply asynchronously with an acknowledgement message ACK. If either all entities that were notified - and that consequently had previously registered with the registration list in order to become notified - have sent an ACK message or else if the timer for this event expired the event manager simply discards the event.
This mechanism prevents the mobile hub from being blocked by stored events where the event engine cannot be sure whether this event already was attended to all interested entities. On the other hand, a database including complex access is not required. Instead, the event manager manages the event circulation in the buffer following fixed rules as stated above and thus, prevents the buffer from being blocked. Hence, the event handling solution is efficient, highly adaptable and extensible. As no event can block the buffer any more, a small scale buffer can be used for the mobile hub which in turn keeps the mobile hub handy and portable.
The mobile hub is in particular resistant against blocking events when all the stored events comprise a corresponding timer for monitoring the storage period of the associated event. Then, every event resides only a limited maximum time in the buffer which corresponds to the time-out of the associated timer before it will be discarded.
The time-out of a timer can preferably be a variable time-out that depends on an event arrival rate. The more events arrive at the mobile hub per time unit, the shorter the time-out is. The less events arrive at the mobile hub, the longer the time-out can be without deteriorating the performance of the mobile hub.
The time-out can also differ for different applications running on the mobile hub. Then, a limited part of the buffer can e.g. be assigned to a particular application which application can afford a longer time-out due to rarely arriving events, while the remaining part of the buffer is reserved for events belonging to another application with a more frequent arrival rate and thus a shorter time-out. The engine manager can be responsible for classifying events to applications and filling the respective buffer parts accordingly.
The mobile hub preferably comprises hardware elements according to the mobile hub mentioned in the prior art. In particular, the mobile hub preferably comprises an interface to a wireless local area network for receiving and/or transmitting events from/to external entities. Such access to a WLAN can e.g. comprise access to a WLAN according to the 802.11 specification, and/or comprise access to Bluetooth. In addition or alternatively, the mobile platform preferably comprises an interface to a wireless wide area network WWAN such as to a GSM, GRPS, or UMTS network. External entities such as sensors, devices or appliances can connect via the WLAN and/or the WWAN to the mobile hub and provide data to software components running on the hub. External devices can also be recipients of data transmitted via the WLAN and/or the WWAN. Hence, external devices can either be event sources or event comsumers or both event sources and event consumers at the same time.
Mobile hub internal entities are e.g. software components as mentioned above. Such internal entities work on events, and can provide a variety of functions: An internal entity might inlcude the function of a router, another internal entity might include the function of a server, and so on.
An internal entity processes received events in some way. It e.g. provides processed data via the WWAN to services running somewhere in the Internet.
As the mobile hub internal event representation might be different to an event representation an external entity might be able to process, the mobile hub preferably comprises adapters for converting an internal representation of an event into a representation of the event comprehensible to an external entity and vice versa. Different external entities might require different adapters in the mobile hub.
Further preferred embodiments cover the possibility of annotating events in the system. Events which typically follow a fixed notation scheme can preferably be annotated by entities of the system. This means that preferably internal entities but also external entities can annotate a received event in order to initiate further action. Such event together with the annotation is typically sent back to the event manager of the mobile hub and is handled accordingly: The event manager preferably distributes the annotation to registered entities. Annotating events is an easy and flexible way for enhancing the communication performance of the entire system. Such annotation can preferably be attached to any event sent to the event manager for proper handling. However, in particular, an acknowledgement message can be the carrier of an annotation added by an entity.
But not only the annotation itself can be distributed. According to another preferred embodiment, the entire event including the annotation is distributed by the event manager.
According to another embodiment of the present invention, there is provided an event model wherein the appearance of an event follows an event notation which notation comprises different fields per event, each field specifying a certain category of information. Preferably, at least some of the fields follow a hierarchy. Such an event model facilitates the handling of events inside the mobile hub, as in particular filters for events can be implemented easily.
According to another aspect of the present invention, there is provided a computer program element, which computer program element comprises code means for performing a method according to any one of the method claims when loaded in the processing unit of a mobile hub.
It is noted that in general embodiments of the apparatus as well as advantages of the apparatus and its embodiments are also considered as embodiments of the method respectively as advantages of the method and its embodiments and vice versa.
BRIEF DESCRIPTION OF THE DRAWINGS
The invention and its embodiments will be more fully appreciated by reference to the following detailed description of presently preferred but nonetheless illustrative embodiments in accordance with the present invention when taken in conjunction with the accompanying drawings. The figures are illustrating:
FIG. 1 a diagram of a system comprising a mobile hub according to the present invention,
FIG. 2 a schematic diagram of a mobile hub, in accordance with an embodiment of the present invention,
FIG. 3 another schematic diagram of a mobile hub, in accordance with an embodiment of the present invention,
FIG. 4 a diagram of example event flows, in accordance with an embodiment of the present invention, and
FIG. 5 an event structure, accordance with an embodiment of the present invention.
Different figures may contain identical references, representing elements with similar or uniform content.
DETAILED DESCRIPTION OF THE DRAWINGS
FIG. 1 illustrates a diagram of a system comprising a mobile hub according to the present invention.
A typical mobile hub can include a runtime system such as the Symbian OS, or Linux, or a PersonalJava or MIDP Java™ runtime environment and appropriate WLAN and/or WWAN components (Java, and/or PesonalJava MIDP Java are trademarks of Sun Corporation).
The mobile hub 1 according to FIG. 1 is actually communicating to two external entities 2 and 3. External entity 2 is a sensor for monitoring medication compliance (the device monitors a blister pack) and is connected to the mobile hub 1 via the wireless local area network Bluetooth. External entity 3 is a server running a remote patient monitoring application and connected to the mobile hub via the wireless wide area network GPRS. A medical administrator (e.g., doctor, nurse, etc.) can set up a medication regime (i.e., how many pills to take when) with the patient monitoring application. The patient monitoring application 3 sends the medication regime (e.g., as an ICAL or VCAL calendar specification) via GPRS to a network adapter running on the mobile hub 1. The network adapter injects the medication regime into the event engine which redistributes it to all registered adapters: one of which is the medication compliance monitor adapter which sends the information (possible converted into a proprietary format or just as is) to the medication compliance monitor via a Bluetooth link. The medication compliance monitor 2 will sound an alarm to the patient once the time to take the medication has been reached. If the patient takes the medication from blister pack contained in the medication compliance monitor 2, the compliance monitor 2 will connect to the mobile hub 2 via Bluetooth and transmit a "blister opened"event (containing the time the blister was opened and possible other information) to the medication compliance adapter on the mobile hub 2. The medication compliance adapter converts the sensor information into a standardized event format and injects it into the event engine, which forwards the event to all other registered adapters. The GPRS network adapter submits the medication event via GPRS to the remote patient monitoring application 3.
As already shown in connection with FIG. 1, the health care/medical/pharmaceutical application area where sensor and actuator devices - collectively called external entities - connect via, for example, Bluetooth to the mobile hub, is an attractive application area of mobile hubs. Each sensor periodically transmits a sensor value to the mobile hub. On the mobile hub the sensor data needs to be analysed, perhaps correlated to the data of other sensor devices, and might also be relayed to network based services. Typically, the data is of a discrete nature and each sensor value can be treated as an event. Thus, each sensor submits a sequence of events via the wireless communication link to the mobile hub. Likewise, mobile hub internal processes / entities can generate events. Of course, it might be necessary to make these internally created events or the events received from external entities available to consumers on the mobile hub and/or even mobile hub external services. Thus, to efficiently handle events and distribute them appropriately, the mobile hub needs an event engine, also called event manager.
FIG. 2 shows schematically how an event engine/event manager is integrated in a mobile hub. The mobile hub 1 according to FIG. 2 comprises a circular buffer 11, an event engine 12, a timer unit 13, a cache 14, adapters 15 and 16 and an internal entity 17.
As the mobile hub according to FIG. 2 can be regarded as an event handling system, events - which are basically messages that trigger an reaction in the system - are the basic information/data bearing carriers. An event can be generated by external entities such as entities 2 or 3 according to FIG. 2. The mobile hub 1 has a need to transform the external representation of an event into an representation that is comprehensible inside the mobile hub. Likewise, an external entity exchanging events with the mobile hub 1 has a need to convert the mobile hub internal representation of an event into a representation that is comprehensible for the external entity. This conversion is the primary job of adapters. As can be derived from FIG. 2, adapters 15 and 16 are located as intermediary between external devices 2 and 3 and the internal event handling system of the mobile hub 1. Adapters generally interact with external entities and mobile hub applications.
However, an event can also be generated, modified, analysed or worked on by mobile hub internal entities, such as internal entity 17 according to FIG. 2.
Once an event arrives at the mobile hub either submitted from an external entity or created by an internal entity, the event is cached in cache 14. The event manager 12 then transfers event by event to the circular buffer 11. Events are only transferred to the circular buffer once a memory cell of the circular buffer 11 is ready to accept a new event. This event handling requires a mechanism that grants a non-blocking event processing in the circular buffer, as the buffer cannot accept an unlimited number of events due to its limited size.
A mechanism for achieving a buffer 11 with non-blocking properties is the use of timers. In FIG. 2, the timer unit 2 provides a timer for every event actually stored in the buffer 11. For each timer, a time-out is defined. The time-out can be defined in many different ways. A time-out can be defined on basis of an anticipation of events to be handled or events expected to arrive per time unit. The time-out value can also be implemented as variable time-out value which is basically dependent on the arrival rate of events to be handled. According to this latest embodiment, a measurement for measuring the arrival rate can be introduced to the mobile hub.
The time-out basically defines the maximum period of time an event can occupy a memory cell in the buffer 11. By the latest when the time-out for a particular event is exceeded, this particular event is discarded from the buffer in order to have the memory cell released for another event to be handled.
Preferably, the timer is set when the event is stored in the buffer 11. In another embodiment, the timer is set when the event arrives at the mobile hub. While in the first embodiment, an event can occupy the buffer for a fixed time which is the time-out time, the time-out time of the second embodiment defines a maximum stay of an event in the mobile hub, wherein the effective time in the buffer might be little less than the time-out time due to the time needed for handling the event in the mobile hub but outside the buffer.
Basically, the time-out unit 13 provides timers for every event stored in the buffer. The event manager 12 is responsible for storing events in the buffer 11, for setting timers in the timer unit 13, and for discarding events from the buffer 11 when the time-out of the respective timer was exceeded.
However, during the time spent by an event in the buffer, this event should be processed. Subject to the event, the event has to be processed by an internal entity, or has to be processed by an external entity or has to be processed by an internal and external entity. Before processing an event, the event has to be transferred to the processing entity. Therefore, a registration list 19 is established in the mobile hub 1. The registration list 19 provides information, which sort of event has to be communicated whereto. For example, an entry in the registration list 19 might look like: "All events coming from an external sensor have to be sent to the internal agent 17 for further processing." or "All events coming from the internal agent have to be forwarded to the SMS adapter 16 of the mobile hub in order to be communicated via GPRS to an external entity.". Entities can register or subscribe with the registration list and indicate in which sort of events they are interested in.
Preferably, the event manager 12 has access to the registration list 19 and handles events accordingly once an event is stored in the buffer 11. Therefore, together with storing an event in the buffer 11, the corresponding timer is set and the event is transmitted to all interested entities according to the registration list 19. It is not necessarily the event itself that is transmitted to such registered entities. In more general words, the registered entities are notified on the event. The notification might be a message not identical or identical to the event that triggered a notification.
A notification is triggered upon the arrival of a new event. In this context, the arrival can be interpreted as arrival in the circular buffer 11, or as arrival at the mobile hub, or as arrival at any time in between. Typically and as indicated in FIG. 2, the notification will be triggered when the event is stored or short time before or afterwards, since the event has to raise the attention of the event manager 12 first which then looks up the registration list 19 for determining the recipients of a notification upon this event.
An implementation of the mobile hub 1 provides a way of returning acknowledgement messages back to the event manager 12 - either directly or via the cache 14 - upon the receipt of a notification. Thus, the event manager 12 can monitor which entities - internal or external ones - have acknowledged the receipt of a notification. When all the recipients have acknowledged the receipt of the notification, the event that has triggered the notifications is not needed anymore from an event handling point of view. Internal or external entities might take further processing steps in response to the notification. However, in an event based system, if needed these entities simply transmit a new event to the mobile 1 hub for further handling by the event manager 12 once they have to communicate further information to any entity of the interconnected mobile system. Such event will then be handled the same way as described above.
However, an event will only be discarded from the buffer upon receipt of an acknowledgement message ACK from all the notified entities - and thus when the last ACK will be received by the event engine 12 - before the time-out of the corresponding timer. As long as not all expected acknowledgments - acknowledgments are expected from the notified entities - are received before the time-out of the corresponding timer will be exceeded, the event is discarded from the buffer upon the timer exceeding its time-out. This prevents the buffer from being blocked by events which recipients of the event related notifications are unable to acknowledge the notification for what reason ever - breakdown, disconnected mode, etc..
There is provided another feature in the mobile hub of FIG. 2: Entities can reply with an event annotation instead of an ACK or with an annotated ACK to augment the stored event. In that case the event manager 12 updates the event stored in the buffer 11 with the annotation, resets the timer for that event and re-notifies all subscribed entities except the one that annotated the event.
Annotating events in general provides the possibility that any entity/subscriber can provide additional data to an existing event - and thus annotate it. The principle behind this annotation mechanism is that all annotations are made available to all other interested entities. This mechanism helps improving the speed of handling events by the event manager. However, the right to annotate cannot only be granted to notified entities. Also adapters could comment on events that pass by, if needed.
According to FIG. 2, there are two events actually stored in the buffer 11: a "green event" and a "red event". The red event was posted by adapter 17 to the event engine 12 (dotted line between 17 and 12). The event engine 12 entertains a registry of adapters 14. The event engine 12 notifies the other subscribed adapters 15 and 16 of the red event. Adapter 16 simply acknowledges the receipt of the red event; adapter 15 annotes the red event and returns that with the acknowledgement to the event engine 12. The event engine 12 redistributes the red event and the annotation to the other adapters, in this case to adapter 16. Adapter 16 again acknowledges the receipts of the annoted event. Once all adapters have acknowledge receipt of the event (and its annotated version) the event engine 12 then can remove the red event from the circular buffer. For the green event an event timeout ocurred an the event engine removes it from the circular buffer as well then.
Adapters, and also internal entities can provide event filters (e.g., a filter pattern) to indicate their interest in just certain kind of events, the event engine will only forward those events to a specific adapter that match the filter pattern. Also, the event engine will not add any adapter whose filter pattern did not match an event to the set of notified parties for that particular event. By tuning the time-out parameters and including the current values in the notifications sent by the event engine to adapters the system can be adapted to different usage scenarios and also communicate changes and enable adapters to react.
FIG. 3 illustrates another mobile hub 1 schematically. Again, an event manager 12 handles events by making use of a circular buffer 11 for temporary storing events. The timer unit 13 provides timers for all stored events, while the registration lists provides information to the event manager 12 which events stored in the circular buffer 11 shall be sent to which interested entities.
There are two internal entities or agents provided - referenced by numbers 17 and 18. There are three adapters 15, 151, 16 provided for supporting communication between external entities and the event manager 12. There are two external entities 2 and 3 visible and connected to the mobile hub 1: External entity 2 which comprises sensors is connected to the mobile hub 1 via Bluetooth; external entity 3 called "Services" is connect to the mobile hub 1 via a net connection on GRPS. Block 10 indicates the hub's operating system. References 101 - 104 depict elements from a more hardware point of view: Block 101 represents the GRPS interface, block 102 the Bluetooth interface, whereas block 103 represents the storage means of the mobile hub. Block 104 represents the SIM of the mobile hub (SIM = subscriber identity module). As can be derived from FIG. 3, an external device such as external entity 2 is connected to the mobile hub via the Bluetooth interface 102. And there is an adapter assigned to this external device for transforming event notation, which is adapter 15 according to the embodiment of FIG. 3. In general, an adapter can be assigned to an entire interface or alternatively, to a particular entity. The minimum API set that is required to access the mobile hub comprises instructions such as "registerO" for registering an entity, "deregister ()" for deregistering an entity, and "post ()" for posting events.
Exemplary adapters are e.g., one or more of which can be embodied in a mobile hub subject to the configuration and the needs of the hub:
• a sensor adapter for interconnecting to one or more sensors;
• a persistent storage adapter for interconnecting the mobile hub to a storage device, e.g. for backup purposes;
• a HTTP adapter for connecting to Internet Protocol based services;
• a debugging adapter for connecting to a diagnosis tool,
• communication adapters such as WLAN adapter, SMS adapter, ....
Internal entities can e.g. be embodied as:
• a calendar entity;
• a alarm entity;
• a device discovery entity;
• a device monitoring entity;
• a data monitoring entity;
• a configuration entity.
FIG. 4 shows a diagram of example event flows, in accordance with an embodiment of the present invention, with particular focus on the feature of annotating events.
A sensor which e.g. could be the external entity 2 according the diagram in FIG. 2 or FIG. 3 picks up a new value val i and transmits it to the mobile hub via Bluetooth. This message is an event. The corresponding sensor adapter - which could be adapter 15 according to FIG. 2 - converts the external representation of the event comprising the value val i into a hub internal representation of the event which representation shall e.g. be event O.l.x.y.z. Such a notation will be more fully explained with regard to FIG. 5. After the conversion, the event in its new notation is injected by the sensor adapter into the event handling system of the mobile hub. According to a registration list - e.g. the registration list 19 according to FIG. 2 - the event manager notifies subscribed entities - i.e. agents and adapters. Upon such a notification agent 17 of the mobile hub according to FIG. 2 returns the event - here the notification is identical to the event - together with an annotation to the event manager. The annotation shall express that the "event should be replicated to the network", as the agent might have stated that the event is of interest to the network. As the annotation explicitly indicates an addressee, the registration list might provide an entry such as "if an event or an annotation explicitly provides an addressee, the interested entity is only this addressee" in order to enable appropriate notification. Hence, the event engine notifies the subscribed entities which in this case is only the GSM/GPRS adapter. Thus, the event engine sends the event to the corresponding net adapter which could be adapter 16 according to FIG. 2. Net adapter 16 then converts the event into an SMS (short message service) and sends the SMS out.
FIG. 5 shows an event structure which is reflected in a corresponding event notation. Thus, a taxonomy for categorizing events is introduced. According to the model, on a first level, events are distinguished between sensor and actuator events. Sensor events report data to the system. For example, a temperature sensor posts temperature measurements, a GSM sensor reports an incoming phone call and the caller ID, a heart rate sensor reports a heartbeat, and so forth. Actuator events in turn request an action to occur. Actuator events indicate commands. For example, a store event would signal that the attached data element should be stored somewhere, a GSM phone call event would indicate that a GSM phone call should be started. According to FIG. 5, the first digit of an event notation indicates whether the event is a sensor event or an actuator event, wherein the sensor event class of events mentioned is indicated by a (0) in the first digit, and the actuator event class is indicated by a (1) in the first digit.
Aside from the top level differentiation between sensor and actuator events, there are provided second level event categories for the event source, third level categories for domains, and fourth level categories for sensor/actuators An event source can be an external or an internal one - always in relation to the mobile hub. The domain can indicate what the event relates to, such as to the system in general, the phone subsystem, a medical domain, an automotive domain, etc.. The sensor/actuator classification uses the terms sensor and actuator in the widest possible meaning: A sensor can be a device that just provides a single bit of information but can also something quite complex, likewise an actuator can take a single bit of information and act on it or it can take a complex set of instrictions.
Each level provides a well-defined list of enumerated items. In order to "address" an event, there is a tuple scheme preferred: "as.exin.dom.dev" for example provides an order in which events should be noted: The first field of the tuple should indicate a value for the actuator/sensor event, the second field should indicate whether the event is coming from an internal or an external device, the third field indicated the content domain, and the fourth field indicates the type of the device.
Along with this event notation, an external medical heart beat sensor event could be addressed e.g. by the tuple 0.1.10.1, with the first 0 indicating that this event is generated by a sensor, the following 1 that it came from an external device, the following 10 indicating the medical domain, the final 1 characterizing a heart rate sensor. According to FIG. 5, the next level indicates that the data the heart beat sensor is providing are heart beat data. On the next level, the type of the data indicated on the fourth level are specified. Thus lower level entries can depend on upper level entries. The entry on the lowest level shows that the heart beat is given on a time basis.
The other event tuple that is depicted in FIG. 5 provides an event delivering sensor data from an internal communication entity which is a scanner. The scanner data indicate that a new device was discovered with its MAC address.
Some or all of such fields can be subject to a hierarchical system of fields. The introduction of fields facilitate filtering events or skipping unknown events.
In addition, there is another two tuple introduced as preferred embodiment that always trails the "address" part: The first tuple selects well-defined data subfields - e.g. for a medical bloodpressure cuff sensor: systolic bloodpressure, diastolic bloodpressure, heart rate -, the second indicates the data type - integer, boolean, time, date, string, binary. Also, each event can carry with it a universal ID of the adapter that injected it into the event system as well as a timestamp noting the time of injection. An event preferably consists of at least the event header (containing the UID, the event timestamp, and the event address). Optionally it contains subfields containing additional data. An adapter/agent can on receipt of an event annotate the received event. If an event is annotated, the event engine will then redistribute that event to all subscribed agents/adapters. Optionally, the original source and the annotated source can be filtered out if bandwidth should be conserved.
Any event notation described above represents an hub internal notation. Thus, adapters have to be aware of the notation used since adapters are responsible for converting an external event notation into the internal one and vice versa. Of course, internal entities in form of agents are also aware of the event notation used since agents process events. In combination with the event notation introduced above, it is for example easily to process events by filtering, such as only evaluating received events that start with a "0.1.10...." in the first three fields and thus only deal e.g. with sensor data from medical sensors. An agent might be specialized in that and have the corresponding procedures available for processing sensor data from medical sensors.
As an example, consider a cheststrap that picks up a person's heartbeat and generates a Bluetooth signal for each heartbeat. The adapter on the mobile hub timestamps each heartbeat and the corresponding events would be labelled 0.1.10.1.1.5:
• the first digit, 0, indicates that this is a sensor event (and not an actuator command)
• the next digit, 1, indicates that the sensor event is provided by an external sensor
• the next digit, 10, indicates that the sensor is a medical sensor
• the next digit, 1, indicates that the sensor is a heartrate sensor
• the next digit, 1, indicates that the heartrate sensor is sensing heartbeats
• the next digit, 5, indicates that the information is the timestamp of a heartbeat.
The benefit of using such a notation is that it is very easy to filter out events that an adapter is not interested in; for example, an adapter that is only interested in external medical sensor events can discard all events that do not have the 0.1.10 prefix; or it could discard information that it does not understand: if, for example, a new sensor would provide not only the timestamp of the heartbeat but also the current averaged rate, it would then be able to pick up the timestamped heartbeat data but just ignore the current average rate data. Last, preferred implementations of the event handling system of a mobile hub are introduced: The event handling system according to the present invention can preferably implemented on the Linux platform: Events can be stored in shared memory region. Event notifications can be accomplished by Unix System V messaging. Alternatively, the event handling system can be implemented on Symbian's mobile phone operating system. Here events are distributed via object invocation.

Claims

1. Mobile hub, comprising
• a circular buffer (11) for storing events,
• a timer for monitoring the storage period of an event stored in the buffer (11), and
• an event manager (12) designed for discarding an event from the buffer (11) when a time-out of the associated timer is exceeded.
2. Mobile hub according to claim 1, wherein the time-out is a variable time-out that depends on an event arrival rate.
3. Mobile hub according to claim 1 or claim 2, wherein the time-out differs for events associated to different applications.
4. Mobile hub according to any one of the previous claims, wherein every event stored in the buffer (11) has a timer associated.
5. Mobile hub according to any one of the preceding claims, wherein the buffer (11) has a capacity for storing less than 200 events.
6. Mobile hub according to claim 5, wherein the buffer (11) has a capacity for storing less than 100 events.
7. Mobile hub according to any one of the preceding claims, comprising an interface (102) to a wireless local area network for receiving and/or transmitting events from/to external entities.
8. Mobile hub according to any one of the preceding claims, comprising an interface (101) to a wireless wide area network for receiving and/or transmitting events from/to external entities.
9. Mobile hub according to any one of the preceding claims, comprising an adapter (15, 16) for converting an internal representation of an event into a representation of the event comprehensible to an external entity (2, 3) and vice versa.
10. Mobile hub according to any one of the preceding claims, comprising an internal entity (17, 18) for processing events.
11. Mobile hub according to any one of the preceding claims, wherein the event manager (12) is designed for storing an arriving event in the buffer (11) and for starting the associated timer.
12. Mobile hub according to any one of the preceding claims, comprising a registration list (19) for identifying entities that should be notified at the appearance of an event.
13. Mobile hub according to claim 12, wherein the event manager (12) is designed for notifying entities according to the registration list (19) upon the arrival of an event.
14. Mobile hub according to any one of the preceding claims,
• wherein the event manager (12) is designed for monitoring acknowledgment messages received from entities in response to a notification that was sent to these entities,
• wherein the event manager (12) is designed for discarding an event from the buffer (11) when an acknowledgement message was received before the time-out of the timer from each of the entities notified with regard to this particular event, and
• wherein the event manager (12) is designed for discarding the event from the buffer (11) when the time-out of the associated timer is exceeded and when an acknowledgement message was not received before the time-out of the timer from all the entities notified with regard to this particular event.
15. Method for managing events in a mobile hub, comprising
• storing an event in a circular buffer (11),
• monitoring a storage period of the stored event, and
• discarding the event from the buffer (11) when the storage period exceeds a time-out.
16. Method according to claim 15, comprising notifying registered entities upon the arrival of an event.
17. Method according to claim 16, wherein an entity is an external entity (2, 3) communicating with the mobile hub (1) via a wireless network.
18. Method according to claim 16 or 17, wherein an entity is an internal entity (17, 18) of the mobile hub (1) for processing events.
19. Method according to any one of the claims 15 to 18, comprising
• monitoring acknowledgement messages received from entities in response to a notification that was sent to these entities,
• discarding an event from the buffer (11) when an acknowledgement message was received before the time-out of the timer from each entity notified with regard to this particular event, and
• else discarding the event from the buffer (11) when the time-out of the associated timer is exceeded and when an acknowledgement message was not received before the time-out of the timer from all the entities notified with regard to this particular event.
20. Method according to any one of the preceding claims 15 to 19, comprising distributing an annotation to registered entities which annotation was received in combination with an acknowledgement message.
21. Method according to any one of the claims 15 to 20, comprising distributing an annotation to registered entities which annotation was received in combination with an event.
22. Method according to any one of the preceding claims 15 to 21, comprising distributing an event to registered entities which event comprises an annotation attached to the original event.
23. Method according to any one of the preceding claims 15 to 22, comprising distributing an annotation to registered entities which annotation was received in combination with an event.
24. Method according to any one of the preceding claims 15 to 23, wherein the appearance of an event follows an event notation which notation comprises different fields per event, each field specifying a certain category of information.
25. Method according to claim 24, wherein at least some of the fields follow a hierarchy.
26. Computer program element, comprising computer program code means for performing a method according to any one of the claims 15 to 25 when loaded in the processing unit of a mobile hub.
PCT/IB2004/003744 2003-11-25 2004-11-12 Mobile hub and managing events in a mobile hub WO2005053222A2 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
EP04798873A EP1687947B1 (en) 2003-11-25 2004-11-12 Mobile hub and managing events in a mobile hub
JP2006540646A JP4912152B2 (en) 2003-11-25 2004-11-12 Mobile hub and event management in mobile hub

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
EP03405843 2003-11-25
EP03405843.8 2003-11-25

Publications (2)

Publication Number Publication Date
WO2005053222A2 true WO2005053222A2 (en) 2005-06-09
WO2005053222A3 WO2005053222A3 (en) 2005-07-14

Family

ID=34626448

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/IB2004/003744 WO2005053222A2 (en) 2003-11-25 2004-11-12 Mobile hub and managing events in a mobile hub

Country Status (6)

Country Link
US (1) US7757019B2 (en)
EP (1) EP1687947B1 (en)
JP (1) JP4912152B2 (en)
KR (1) KR100906176B1 (en)
CN (1) CN1886944A (en)
WO (1) WO2005053222A2 (en)

Families Citing this family (42)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070136490A1 (en) * 2005-12-14 2007-06-14 Oracle International Corporation Wireless hub and data store
US8126735B2 (en) * 2006-10-24 2012-02-28 Medapps, Inc. Systems and methods for remote patient monitoring and user interface
US20080097912A1 (en) * 2006-10-24 2008-04-24 Kent Dicks Systems and methods for wireless processing and transmittal of medical data through an intermediary device
US8126728B2 (en) * 2006-10-24 2012-02-28 Medapps, Inc. Systems and methods for processing and transmittal of medical data through an intermediary device
US20080097914A1 (en) * 2006-10-24 2008-04-24 Kent Dicks Systems and methods for wireless processing and transmittal of medical data through multiple interfaces
US8126729B2 (en) * 2006-10-24 2012-02-28 Medapps, Inc. Systems and methods for processing and transmittal of data from a plurality of medical devices
US20080097550A1 (en) * 2006-10-24 2008-04-24 Kent Dicks Systems and methods for remote patient monitoring and command execution
US9619621B2 (en) * 2006-10-24 2017-04-11 Kent Dicks Systems and methods for medical data interchange via remote command execution
US9543920B2 (en) * 2006-10-24 2017-01-10 Kent E. Dicks Methods for voice communication through personal emergency response system
US8126730B2 (en) * 2006-10-24 2012-02-28 Medapps, Inc. Systems and methods for storage and forwarding of medical data
US8126734B2 (en) * 2006-10-24 2012-02-28 Medapps, Inc. Systems and methods for adapter-based communication with a medical device
US8126733B2 (en) * 2006-10-24 2012-02-28 Medapps, Inc. Systems and methods for medical data interchange using mobile computing devices
US8126732B2 (en) 2006-10-24 2012-02-28 Medapps, Inc. Systems and methods for processing and transmittal of medical data through multiple interfaces
US8131566B2 (en) 2006-10-24 2012-03-06 Medapps, Inc. System for facility management of medical data and patient interface
US20080097917A1 (en) * 2006-10-24 2008-04-24 Kent Dicks Systems and methods for wireless processing and medical device monitoring via remote command execution
US8966235B2 (en) * 2006-10-24 2015-02-24 Kent E. Dicks System for remote provisioning of electronic devices by overlaying an initial image with an updated image
US9349114B2 (en) * 2006-10-31 2016-05-24 Hewlett Packard Enterprise Development Lp Systems and methods for managing event messages
US20110090086A1 (en) * 2007-10-22 2011-04-21 Kent Dicks Systems for personal emergency intervention
US20090215490A1 (en) * 2008-02-27 2009-08-27 Mediatek Inc. Methods for handling proactive commands for one or more subscriber identity cards and systems utilizing the same
JP5610773B2 (en) * 2010-01-06 2014-10-22 キヤノン株式会社 Message processing apparatus and message processing method
US20120182939A1 (en) * 2011-01-14 2012-07-19 Qualcomm Incorporated Telehealth wireless communication hub and service platform system
CN102982063A (en) * 2012-09-18 2013-03-20 华东师范大学 Control method based on tuple elaboration of relation keywords extension
US9066212B2 (en) 2012-10-30 2015-06-23 Qualcomm Incorporated Offloading call processing and call hosting for a small group call to a client device
US9179260B2 (en) 2012-12-03 2015-11-03 Mylan Inc. Medicament information system and method
US9643770B2 (en) 2012-12-03 2017-05-09 Mylan Inc. System and method for medicament storage, dispensing, and administration
US20140155827A1 (en) 2012-12-03 2014-06-05 Mylan, Inc. Medicament information system and method
US9692829B2 (en) 2012-12-03 2017-06-27 Mylan Inc. Medication delivery system and method
US9584379B2 (en) * 2013-06-20 2017-02-28 Microsoft Technology Licensing, Llc Sorted event monitoring by context partition
US9369373B2 (en) 2014-08-25 2016-06-14 Seed Labs Sp. Z O.O. Peer-to-peer building automation system without knowledge being required of network topology
AU2015315181A1 (en) * 2014-09-11 2017-03-30 Mylan Inc. Medication delivery system and method
US10185513B1 (en) 2015-06-05 2019-01-22 Life365, Inc. Device configured for dynamic software change
US9974492B1 (en) 2015-06-05 2018-05-22 Life365, Inc. Health monitoring and communications device
US10560135B1 (en) 2015-06-05 2020-02-11 Life365, Inc. Health, wellness and activity monitor
US11329683B1 (en) 2015-06-05 2022-05-10 Life365, Inc. Device configured for functional diagnosis and updates
US9832082B2 (en) * 2015-06-30 2017-11-28 Mist Systems, Inc. Monitoring wireless access point events
US10388411B1 (en) 2015-09-02 2019-08-20 Life365, Inc. Device configured for functional diagnosis and updates
US9942696B2 (en) * 2015-09-14 2018-04-10 Telefonaktiebolaget Lm Ericsson (Publ) Communicating event data from an event device to an action device
US10516651B2 (en) * 2015-12-22 2019-12-24 Intel IP Corporation Securely routing sensor data from sensors to a trusted execution environment (TEE)
ES2942668T3 (en) * 2017-03-23 2023-06-05 Bayer Ag Support for patients with repeated medication intake
US10528131B2 (en) * 2018-05-16 2020-01-07 Tobii Ab Method to reliably detect correlations between gaze and stimuli
US11490458B2 (en) * 2020-08-04 2022-11-01 Abl Ip Holding Llc Wireless hub emulator
US11716639B2 (en) 2021-08-10 2023-08-01 Abl Ip Holding Llc Self-healing of repeater formation in a network

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1326388A2 (en) 2002-01-05 2003-07-09 Lg Electronics Inc. System and method for avoiding stall using timer for high-speed downlink packet access system

Family Cites Families (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2260835A (en) * 1991-10-24 1993-04-28 Ibm Data processing system
JPH09510596A (en) * 1994-06-08 1997-10-21 エイチイー・ホールディングス・インコーポレーテッド・ディー ビーエー・ヒューズ・エレクトロニクス Apparatus and method for hybrid network access
KR0169248B1 (en) * 1996-07-24 1999-02-01 양승택 Message sending apparatus and message sending controlling method in packet internetwork
US5850388A (en) * 1996-08-02 1998-12-15 Wandel & Goltermann Technologies, Inc. Protocol analyzer for monitoring digital transmission networks
US6689091B2 (en) * 1996-08-02 2004-02-10 Tuan Bui Medical apparatus with remote control
JPH1063547A (en) * 1996-08-19 1998-03-06 Nec Eng Ltd Alarm informing system
US6640246B1 (en) * 1999-09-17 2003-10-28 Ge Medical Systems Global Technology Company, Llc Integrated computerized materials management system
JP2002014940A (en) * 2000-06-28 2002-01-18 Mitsubishi Electric Corp Process communication equipment
US6665385B2 (en) * 2001-04-23 2003-12-16 Cardionet, Inc. Medical monitoring system having multipath communications capability
US7154903B2 (en) * 2001-10-19 2006-12-26 Telefonaktiebolaget Lm Ericsson (Publ) System and method for management of data associated with a dormant mobile terminal
JP2003197881A (en) 2001-12-27 2003-07-11 Seiko Epson Corp Semiconductor integrated circuit, manufacturing method for the semiconductor integrated circuit, semiconductor element member, electrooptic device, and electronic equipment
US6886141B1 (en) * 2002-10-07 2005-04-26 Qlogic Corporation Method and system for reducing congestion in computer networks
JP3741371B2 (en) * 2002-11-22 2006-02-01 株式会社日立製作所 Event control apparatus and event control method
JP3958714B2 (en) * 2003-06-16 2007-08-15 ソフトバンクモバイル株式会社 Mobile communication device

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1326388A2 (en) 2002-01-05 2003-07-09 Lg Electronics Inc. System and method for avoiding stall using timer for high-speed downlink packet access system

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
BROCHURE "IXI - CONNECT WITH STYLE", 18 August 2003 (2003-08-18), pages 1 - 10, Retrieved from the Internet <URL:http://www.ixi.com/PDF/IXI_Brochure.pdf>
JAVA MESSAGE SERVICE - A WHITE PAPER, December 2000 (2000-12-01), Retrieved from the Internet <URL:http://www.prismtechnologies.com/English/Products/CORBA/Integration/whitepaperjms/jm s_BR-12_OO.pdf>

Also Published As

Publication number Publication date
US7757019B2 (en) 2010-07-13
US20060242295A1 (en) 2006-10-26
WO2005053222A3 (en) 2005-07-14
JP2007514996A (en) 2007-06-07
CN1886944A (en) 2006-12-27
KR20060135637A (en) 2006-12-29
KR100906176B1 (en) 2009-07-03
JP4912152B2 (en) 2012-04-11
EP1687947A2 (en) 2006-08-09
EP1687947B1 (en) 2012-10-03

Similar Documents

Publication Publication Date Title
EP1687947B1 (en) Mobile hub and managing events in a mobile hub
US11373753B2 (en) Converting pump messages in new pump protocol to standardized dataset messages
US11670416B2 (en) Tagging pump messages with identifiers that facilitate restructuring
JP4970446B2 (en) Health management system, personalized terminal, and health management data aggregation method
Strowes et al. An event service supporting autonomic management of ubiquitous systems for e-health
Barnes et al. Performance analysis of client/server versus agent based communication in wireless sensor networks for health applications
RU2283511C2 (en) System for transferring ecg via communication network
JP2002014848A (en) Maintenance monitoring system and maintenance monitoring method
Liao et al. A information system based on wireless networks for individual care management

Legal Events

Date Code Title Description
WWE Wipo information: entry into national phase

Ref document number: 200480034704.5

Country of ref document: CN

AK Designated states

Kind code of ref document: A2

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BW BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE EG ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NA NI NO NZ OM PG PH PL PT RO RU SC SD SE SG SK SL SY TJ TM TN TR TT TZ UA UG US UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A2

Designated state(s): BW GH GM KE LS MW MZ NA SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IS IT LU MC NL PL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 2004798873

Country of ref document: EP

DPEN Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed from 20040101)
WWE Wipo information: entry into national phase

Ref document number: 2006540646

Country of ref document: JP

WWE Wipo information: entry into national phase

Ref document number: 1020067010110

Country of ref document: KR

NENP Non-entry into the national phase

Ref country code: DE

WWW Wipo information: withdrawn in national office

Ref document number: DE

WWP Wipo information: published in national office

Ref document number: 2004798873

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 1020067010110

Country of ref document: KR