WO2009108427A2 - Consistently signaling state changes - Google Patents

Consistently signaling state changes Download PDF

Info

Publication number
WO2009108427A2
WO2009108427A2 PCT/US2009/031890 US2009031890W WO2009108427A2 WO 2009108427 A2 WO2009108427 A2 WO 2009108427A2 US 2009031890 W US2009031890 W US 2009031890W WO 2009108427 A2 WO2009108427 A2 WO 2009108427A2
Authority
WO
WIPO (PCT)
Prior art keywords
data
recited
different
node
requested
Prior art date
Legal status (The legal status 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 status listed.)
Ceased
Application number
PCT/US2009/031890
Other languages
English (en)
French (fr)
Other versions
WO2009108427A3 (en
Inventor
Clemens A. Szyperski
Geoffrey M. Kizer
Joshua R. Williams
John D. Doty
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Microsoft Corp
Original Assignee
Microsoft Corp
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 Microsoft Corp filed Critical Microsoft Corp
Priority to EP09715468A priority Critical patent/EP2260378A4/en
Priority to CN2009801066431A priority patent/CN101952799B/zh
Priority to JP2010548762A priority patent/JP5129351B2/ja
Publication of WO2009108427A2 publication Critical patent/WO2009108427A2/en
Publication of WO2009108427A3 publication Critical patent/WO2009108427A3/en
Anticipated expiration legal-status Critical
Ceased legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/542Event management; Broadcasting; Multicasting; Notifications

Definitions

  • Application programs used within computerized systems typically include a number of different components or modules that depend on each other for various different reasons.
  • a simple calculator application program might include an output display component, which immediately refreshes (i.e., displays new output) any time it identifies one or more values output from a calculation module.
  • the calculation module in turn, might be configure to execute a calculation any time it receives one or more number and function inputs from one or more input components.
  • the display component would be dependent not only on the calculation module, but also ultimately on each of the various input components in the calculator application.
  • these dependencies can be configured on a software level.
  • the above-described calculator module might "publish” its calculated values so that any other display component that is “listening” for the value will identify and execute some action on the value when published.
  • the display component might, in turn, establish a listener (e.g., establish an "event"), which ultimately identifies and/or receives the published value.
  • the calculator module might itself be configured to pass (e.g., "signaling") any newly calculated value to a particular other component that is registered with the calculator module.
  • any time a programmer wants to create a dependency between modules or components the programmer will typically need to write a dependency in the code, and sometimes even create a listener for the relationship.
  • the programmer might write a listener that not only retrieves a value when it is published by one component, but also sends the value on to another component in a dependency chain.
  • the programmer might also or alternatively write in other logic whereby the component only sends the value onward when some particular condition is satisfied (e.g., the value is of a particular size).
  • some particular condition e.g., the value is of a particular size
  • one dependency chain might involve a dependency from source node A, to intermediate node C, and then to end-node D.
  • node A may only need a value from end-node D.
  • end-node D may only need to know that source node A has changed, without necessarily needing the value of source node A right away.
  • the second execution context would still involve relay of the actual value of the change from A to C to D, even though D only needs to know that A changed.
  • Implementations of the present invention provide systems, methods, and computer program products that ensure a synchronized approach to delivering, reporting, and/or otherwise processing status/value changes in complex software dependency chains.
  • implementations of the present invention include a two-phase approach in which the system establishes a node graph corresponding to dependency chain of software components, and only calls all listeners in the node graph after all nodes have been signaled.
  • implementations of the present invention can ensure that all listeners receive values based on effectively the same state for the relevant source components, and in appropriate order, thus ensuring consistency.
  • a method in accordance with an implementation of the present invention for processing a consistent set of one or more values in dependency chain can involve creating a plurality of nodes corresponding to a plurality of components that include one or more source components and one or more dependent components that are ordered in a dependency chain.
  • the method can also involve, for each node, setting a binary indicator to a first setting that indicates that one or more source components comprise an initial status.
  • the method can involve, upon identifying a change to a subsequent status in the one or more source components, setting each binary indicator for each node to a second setting.
  • the method can involve calling one or more listeners that have been registered with the created plurality of nodes.
  • another method in accordance with an implementation of the present invention for creating and updating in-memory data structures based only on a set of guaranteed values can involve creating an initial node graph.
  • the initial node graph corresponds to a plurality of components that include one or more dependent component that depend from one or more source components.
  • each node of the initial node graph is set to a first setting.
  • the method can also involve, upon identifying that the one or more source components have changed to an updated value, caching the updated value, and initiating all listeners registered for the initial node graph to perform processing based on the updated value.
  • the method can involve discarding the initial node graph after all initiated listeners have finished processing based on the updated value. Furthermore, the method can involve creating a subsequent node graph based on one or more subsequent changes to the one or more source components.
  • Figure IA illustrates an overview schematic diagram in which a signaling system identifies nodes of a dependency chain in accordance with an implementation of the present invention
  • Figure IB illustrates an overview schematic diagram in which the signaling system signals each node in a dependency chain in accordance with an implementation of the present invention
  • Figure 1C illustrates an overview schematic diagram in which the signaling system calls listeners after signaling the nodes in a dependency chain in accordance with an implementation of the present invention
  • Figure 2 illustrates a flow chart of a method in accordance with an implementation of the present invention for insuring consistency among dependent nodes in a dependency chain
  • Figure 3 illustrates a flow chart of a method for creating different dependency chain structures for insuring consistency among nodes in accordance with an implementation of the present invention.
  • Implementations of the present invention extend to systems, methods, and computer program products that ensure a synchronized approach to delivering, reporting, and/or otherwise processing status/value changes in complex software dependency chains.
  • implementations of the present invention include a two-phase approach in which the system establishes a node graph corresponding to dependency chain of software components, and only calls all listeners in the node graph after all nodes have been signaled.
  • implementations of the present invention can ensure that all listeners receive values based on effectively the same state for the relevant source components, and in appropriate order, thus ensuring consistency.
  • a directed notification graph provides state change notifications in dependence order (as indicated by graph shape).
  • state change (without necessarily passing the changed value) only happens after the program can correctly determine that all out of date nodes are out of date.
  • notification only happens once for a given node (which addresses cycles).
  • Figure IA illustrates an overview schematic diagram in which a signaling system 100 prepares a node graph for at least one set of dependent software components in a dependency chain, in order to ensure consistent signaling.
  • system 100 comprises components A 110, B 120, C 130, D 140, E 150, and F 160.
  • Figure IA shows that component A 110 depends on component B 120, and component C, while component B 120 depends on component D 140 and component C depends from component E 150.
  • Figure IA shows that component D 140 depends from component F 160, and that component D and component E are conditionally related to each other. For example, component E might only compute a value if a value coming out of component D is of a certain size or length, etc.
  • this set of software components A-F can be thought of generally as forming a "dependency chain," which comprises a plurality of source, dependent, and or end-nodes.
  • component F 160 can be understood essentially as a source node in the dependency chain.
  • components B, C, D, and E can be understood essentially as intermediate nodes, and component A can be understood a dependent node of the dependency chain.
  • any given node in a dependency chain can be considered a dependent node, an intermediate node, or a source node with respect to another node in the dependency chain.
  • component D 140 can be considered a source node to component B 120 and/or to component E 150.
  • component E 150 can be considered a source node to component C 130 and so forth.
  • component A could comprise an output module for one particular calculation that involves components B-F in one calculation, but involves more or fewer such component nodes in other calculations.
  • Figure IA shows that system 100 can prepare a node graph 113 corresponding to (or otherwise representing) the dependency chain of software components.
  • node graph 113 comprises a set of in-memory data structures having linked nodes (110a, 120a, 130a, 140a, 150a, and 160a) that are created and discarded based on state changes in relevant software components (e.g., 110, 120, 130, 140, 150, 160).
  • processing module 105 traverses each software component 110, 120, 130, 140, 150, 160 in a dependency chain for the particular request, and prepares a corresponding node graph 113.
  • Figure IA shows that processing module 105 prepares a node graph 113 comprising nodes HOa, 120a, 130a, 140a, 150a, and 160a, which correspond respectively to components 110, 120, 130, 140, 150, and 160.
  • Figure IA shows that processing module 105 also registers each of the different listeners for each software component in a listener registry 170. For example, upon traversing the various components 110, 120, 130, etc. to identify dependencies, each component can also provide an indication of a particular listener. Processing module 105 can then register each identified listener in a listener registry when identified, and thus in the approximate or exact order in the dependency chain. For example, Figure IA shows that components B 120, D 145, and E 155 each use a listener, such as listeners B 125, D 145, and E 155, respectively.
  • Figure IA shows that listener registry 170 comprises a representation for listener D 145, listener E 155, and listener B 125 in relative dependency chain order.
  • system 100 can create and discard node graph 113 to reflect and administer changes in software component state.
  • processing module 105 may have created this particular node graph 113 when source node F equals a value (e.g., "0", or "state 1" 165).
  • source node F changes from a first state to another subsequent state or value (e.g., from "0" to "10" - not shown)
  • system 100 e.g., via processing module 105) can then update the node graph 113 to reflect there mere fact that the change has occurred.
  • the system 100 can then hold the node graph 113 in this particular state until such time as all components have had a chance to finish any desired processing.
  • processing module 105 can then discard node graph 113, and start over with a new such node graph as necessary.
  • system 100 essentially forbids the corresponding nodes from receiving a new update in state while the components 110, 120, 130 are processing the prior change (e.g., the change from "0" to "10").
  • This consistency and unity in processing in the software component is enabled at least in part using one or more signaling features in accordance with implementations of the present invention.
  • Figure IA shows that each of the various nodes 110a, 120a, etc. of node graph 113 comprises (or is prepared with) a binary indicator, such as binary indicators 117a, 127a, 137a, 147a, 157a and 167a.
  • the binary indicator is shown as a "+" sign to identify a particular initial or first setting.
  • a "+" sign in the illustrated case means the default value of a given software source component (e.g., component 160, state 165) for which the dependency chain is based, and before any changes have been processed.
  • node graph 113 can be set up so that a change in binary indicators is linked to a particular state for an original source node. For example, as soon as the change in state of component F 160 was received (i.e., message 180), system 100 can cache the new value (e.g., changed from "0" to "10"), and automatically link the new value to node graph 113, regardless of any other subsequent changes that might occur with source component F 160. Furthermore, system 100 can link any subsequent change to the value of the source component (e.g., component F 160) to a new (or refreshed) node graph (not shown) at such time as required.
  • the new value e.g., changed from "0" to "10
  • a "binary" indicator can only change to one other value, and, as discussed herein, only one time.
  • processing module 105 identifies a change in value to a particular software source component (e.g., 160)
  • the binary indicators 117a, 127a, etc. are only updated once to reflect the change.
  • Figure IA shows that processing module 105 receives a message 180 indicating that component F 160 has been updated.
  • processing module 105 then sends a signal 185 through each of the different nodes 110a, 120a, etc.
  • Signal 185 includes a notation to change the binary indicators from "+” status to a "-” status, and thus simply updates the initial setting on a binary indicator to a subsequent setting.
  • signal 185 is sent essentially in dependency chain order starting from the source node F 160a.
  • Figure IB shows that signal 185 is first sent to node F 160a, then on to nodes D 140a and E 150a, and so on, which results in a change binary indicators from setting 167a, 157a, and 147a (i.e., "+") to settings 167b, 157b, and 147b (i.e., "-”), respectively.
  • signal 185 will pass through each dependency until all nodes in node graph 113 receive signal 185. In most cases, each node will only receive the signal one time. Implementations of the present invention, however, can accommodate cases in which a node receives a repeat of the signal (or any other signal) for any other reason, since each binary indicator nevertheless changes "at most once.” [0032] Specifically, since each binary indicator 147 can be changed only one time (i.e., "at most once"), no other signals (or repeats of a signal) can change the binary indicator of a changed/updated node. That is, with specific reference to the terms used in these Figures, once set to the illustrated "-" sign, a given binary indicator cannot be changed back to a "+” sign.
  • each node of the node graph 113 is configured at creation with no back- channel to another node.
  • node F 160a relays signal 185 at least to node D 140a
  • node F 140a cannot accept a return signal from node D 140a.
  • System 100 further ensures that no processing within this particular dependency chain can occur until all nodes in a given node graph have been updated (via signal 185).
  • system 100 ensures this consistency by holding the calling of listeners 125, 145, or 155 until after all binary indicators have been set and updated, or until after signal 185 has reached all nodes in node graph 113 at least once. In such implementations, therefore, the initial creation of the node graph (e.g., Figure IA) will not result in any processing due to the mere discovery of listeners 125, 145, and 155. Even at the point where system 100 receives an update to component F (e.g., message 180), system 100 will not call any of listeners 125, 145, or 155 until the binary indicators have been updated to reflect the initial change at the source node.
  • component F e.g., message 180
  • system 100 can further enhance consistency by calling listeners in a particular order.
  • Figures IA- 1C shows that the listener registry 170 stores the references to the listeners 125, 145, and 145 in essentially the order they were identified by processing module 105.
  • Figures IA- 1C show that listener registry 170 stores the order of these particular listeners in order first of listener D 145, listener E 155, and listener B 125.
  • processing module 105 when processing module 105 ultimately calls these particular listeners, processing module 105 only does so in approximate processing order.
  • FIG. 1C shows that processing module 105 applies message 190 through the node graph 113 in approximate dependency chain order so that listeners D 145 and E 155 corresponding to nodes D 140a and E 150a are called before listener B 125 corresponding to node B 120a.
  • each corresponding software component can perform processing based on the value changes at the source component. For example, once the listener 145 is called, software component D 140 can perform any processing on the cached value associated with this node graph 113 (e.g., the present value of source component F 160).
  • component E 150 and B 120 can retrieve any value that has already been processed and/or provided from node D, which is based on the most recent update to component F from message 180.
  • system 100 thus orders not only the calling of each listener, but also the processing of successive values along the dependency chain. This significantly increases the likelihood that each value that a particular software component retrieves from another source/intermediate node is based only on an already-processed, most up-to-date value.
  • processing module 150 then discards node graph 113. If required, system 100 can prepare another node graph corresponding to yet another change in component F.
  • Figure IA, IB and 1C provide one or more schematics or components for ensuring that components in a dependency chain effectively process only one state change in a source node at a time, and essentially in the correct order. This can provide a number of important guarantees, and can mitigate or otherwise eliminate concerns that sometimes arise over race conditions (between processing of current and old values in the same chain) in these particular cases.
  • implementations of the present invention can also be described in terms of methods comprising one or more acts for accomplishing a particular result.
  • Figure 2 illustrates a flowchart of a method of processing a consistent set of one or more values in a dependency chain.
  • Figure 3 illustrates an additional or alternative method of creating and updating in-memory data structures representing the dependency chain based only on a set of guaranteed values.
  • the acts in the flowcharts of Figures 2 and 3 are described below with respect to the components and schematics of Figures 1A-1C.
  • Figure 2 illustrates that a method of processing a consistent set of one or more values in a dependency chain can comprise an act 200 of identifying nodes in a dependency chain.
  • Act 200 includes creating a plurality of nodes corresponding to a plurality of components that include one or more source components and one or more dependent components that are ordered in a dependency chain.
  • processing module 105 receives a request for processing from component A I lO, and traverse the corresponding dependency chain to identify each of the different components from which component A depends. Processing module 105 then creates a corresponding node graph 113 data structure comprising one or more nodes in the dependency chain that correlate with the identified components from which A depends.
  • Figure 2 also shows that the method can comprise an act 210 of setting binary indicators for each node.
  • Act 210 includes, for each node, setting a binary indicator to a first setting that indicates that one or more source components comprise an initial status.
  • Figure IA shows that processing module 105 creates and sets a binary indicator 117a, 127a, 137a, 147a, 157a and 167a for each node in node graph 113.
  • this particular binary indicator is set to an initial state (165), which effectively clarifies that the value of the one or more source components (e.g., component F 160) from the time of setting up the node graph has/have not yet changed.
  • Figure 2 shows that the method can comprise an act 220 of, after the source node changes, setting all binary indicators to a second setting.
  • Act 220 includes, upon identifying a change to a subsequent status in the one or more source components, setting each binary indicator for each node to a second setting.
  • processing module 105 once processing module 105 identifies a change to node F, processing module 105 immediately begins signaling the change, such as by first changing each of the binary indicators in the node graph 113 to an alternate, subsequent representation.
  • Figure IB shows that processing module 105 passes signal 185 to each node in node graph 113, changing the "+" setting to a "-.”
  • Figure 2 shows that the method can comprise an act 230 of calling all listeners in the dependency chain.
  • Act 230 includes calling one or more listeners that have been registered with the created plurality of nodes, wherein the one or more listeners are synchronized to execute based on the subsequent status in the one or more source components.
  • Figure 1C shows that system 100 calls each listener for each component, and does so in the order they were originally identified in the dependency chain (e.g., closest to the source node onward to closest to the end node).
  • Figure 1C shows that system 100 first calls listener D 145, then listener E 155, and listener B 125, and so on.
  • Figure 3 illustrates that an additional or alternative method in accordance with the present invention for generating a dependency chain based only on a set of guaranteed values can comprise an act 300 of creating a node graph based on a first state.
  • Act 300 includes creating an initial node graph corresponding to a plurality of components that include one or more dependent components that depend from one or more source components, wherein each node of the initial node graph is set to a first setting.
  • Figure IA shows that processing module 105, upon identifying a processing request 180, traverses components 110, 120, 130, 140, 150, 160 to create a node graph 113 that includes corresponding nodes 110a, 120a, etc.
  • processing module 105 further sets a binary indicator (117a, 127a, etc.) in each node to an initial state (i.e., "+"), indicating that node graph 113 is based off of an initial state (165) of the source node component F 160.
  • Figure 3 also shows that the method can comprise an act 310 of calling all listeners after the state change has been replicated.
  • Act 310 includes, upon identifying that the one or more source components have changed to an updated value, caching the updated value, and initiating all listeners registered for the initial node graph to perform processing based on the updated value.
  • Figure IB and 1C show that upon receiving message 180 to update component node F, processing module 105 changes all the binary indicators in an alternate designation, such as 147b, 157b, 167b, etc. in a node graph 113 (i.e., to "-"), and further calls all listeners in registry 170.
  • Figure 3 shows that the method can comprise an act 320 of discarding the node graph.
  • Act 320 includes discarding the initial node graph after all initiated listeners have finished processing based on the updated value. For example, after each listener shown in Figure 3 has accessed the most recent value available to node graph 113, processing module 105 discards the node graph 113. Since each of the different binary indicators 147b, 157b, etc. can only be changed once, no other subsequent changes into the different components or nodes can be replicated and handled by any of the other called listeners. Thus, system 100 discards the dependency node graph 113.
  • Figure 3 shows that the method can comprise an act 330 of creating a new node graph based on an updated state.
  • Act 330 includes creating a subsequent node graph based on one or more subsequent changes to the one or more source components.
  • processing module 105 could then traverse the set of dependency chains pertaining to this particular processing request again, and identify a new set of nodes pertaining to a new node graph (not shown).
  • this new node graph would also be an in-memory data structure, albeit based on a more recent change to the corresponding source nodes.
  • the node graph can comprise the same representations as shown in Figure IA, but could also comprise different components or nodes, since the execution context may be different and may have different dependencies.
  • this creation of new node graphs and new dependency chains can be continually refreshed, recreated, and discarded as needed.
  • implementations of the present invention thus ensure that source node value changes are processed throughout a dependency chain only one time in a particular node graph context, and in a consistent manner. Accordingly, implementations of the present invention can ensure a high degree of accuracy and consistency in value processing, even in very complex dependency chains of software components.
  • the embodiments of the present invention may comprise a special purpose or general-purpose computer including various computer hardware, as discussed in greater detail below.
  • Embodiments within the scope of the present invention also include computer-readable media for carrying or having computer-executable instructions or data structures stored thereon.
  • Such computer-readable media can be any available media that can be accessed by a general purpose or special purpose computer.
  • such computer-readable media can comprise RAM, ROM, EEPROM, CD-ROM or other optical disk storage, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to carry or store desired program code means in the form of computer- executable instructions or data structures and which can be accessed by a general purpose or special purpose computer.
  • a network or another communications connection either hardwired, wireless, or a combination of hardwired or wireless
  • the computer properly views the connection as a computer-readable medium.
  • any such connection is properly termed a computer-readable medium.
  • Computer-executable instructions comprise, for example, instructions and data which cause a general purpose computer, special purpose computer, or special purpose processing device to perform a certain function or group of functions.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Multimedia (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)
  • Mobile Radio Communication Systems (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Hardware Redundancy (AREA)
  • Telephonic Communication Services (AREA)
PCT/US2009/031890 2008-02-25 2009-01-23 Consistently signaling state changes Ceased WO2009108427A2 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
EP09715468A EP2260378A4 (en) 2008-02-25 2009-01-23 CONSISTENTLY SIGNALING STATUS CHANGES
CN2009801066431A CN101952799B (zh) 2008-02-25 2009-01-23 一致地信令状态变更
JP2010548762A JP5129351B2 (ja) 2008-02-25 2009-01-23 一貫性を有するシグナリング状態の変化

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US12/037,004 US7860900B2 (en) 2008-02-25 2008-02-25 Consistently signaling state changes
US12/037,004 2008-02-25

Publications (2)

Publication Number Publication Date
WO2009108427A2 true WO2009108427A2 (en) 2009-09-03
WO2009108427A3 WO2009108427A3 (en) 2009-11-05

Family

ID=40999338

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2009/031890 Ceased WO2009108427A2 (en) 2008-02-25 2009-01-23 Consistently signaling state changes

Country Status (5)

Country Link
US (1) US7860900B2 (https=)
EP (1) EP2260378A4 (https=)
JP (1) JP5129351B2 (https=)
CN (1) CN101952799B (https=)
WO (1) WO2009108427A2 (https=)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101840230A (zh) * 2010-06-04 2010-09-22 浙江中控技术股份有限公司 一种监控和管理数据的方法及系统

Families Citing this family (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9021503B2 (en) * 2007-11-16 2015-04-28 Microsoft Technology Licensing, Llc Coordinating application state and communication medium state
US8719841B2 (en) * 2007-11-16 2014-05-06 Microsoft Corporation Dispatch mechanism for coordinating application and communication medium state
US8505030B2 (en) * 2007-11-16 2013-08-06 Microsoft Corporation Coordinating resources using a volatile network intermediary
US7899798B2 (en) * 2008-02-25 2011-03-01 Microsoft Corporation Observing and reporting changes in complex software dependencies
US8301706B2 (en) 2009-06-15 2012-10-30 Microsoft Corporation Routing of pooled messages via an intermediary
US8549538B2 (en) * 2010-03-18 2013-10-01 Microsoft Corporation Coordinating communication medium state for subtasks
US8250234B2 (en) 2010-04-26 2012-08-21 Microsoft Corporation Hierarchically disassembling messages
JP2012088815A (ja) * 2010-10-15 2012-05-10 Toshiba Corp マイクロプロセッサ動作監視システム
EP2611158B1 (en) 2011-12-29 2019-12-18 Swisscom AG Method and system for optimized delta encoding
GB2506596A (en) * 2012-10-02 2014-04-09 Ibm Managing a set of software modules in a runtime environment
US9880918B2 (en) * 2014-06-16 2018-01-30 Amazon Technologies, Inc. Mobile and remote runtime integration
US9940212B2 (en) * 2016-06-09 2018-04-10 Google Llc Automatic qubit calibration
CN110413632B (zh) * 2018-04-26 2023-05-30 腾讯科技(深圳)有限公司 管理状态的方法、装置、计算机可读介质及电子设备
US20210042167A1 (en) * 2019-08-07 2021-02-11 Microsoft Technology Licensing, Llc Dynamic Package Dependency(ies)
CN111736836B (zh) * 2020-07-22 2020-11-17 平安国际智慧城市科技股份有限公司 基于关系图的组件配置方法、装置及计算机可读存储介质

Family Cites Families (26)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5317734A (en) * 1989-08-29 1994-05-31 North American Philips Corporation Method of synchronizing parallel processors employing channels and compiling method minimizing cross-processor data dependencies
FR2681451B1 (fr) * 1991-09-13 1993-11-12 Bull Sa Procede de gestion d'objets structures.
DE69528749T2 (de) * 1995-02-17 2003-09-18 International Business Machines Corp., Armonk Objektorientierte Programmierschnittstelle zur Entwicklung und zur Ausführung einer Netzwerkverwaltungsapplikation auf einer Netzwerkkommunikationsinfrastruktur
US5808625A (en) * 1995-08-04 1998-09-15 Silicon Graphics Incorporated System and method for using dependency graphs for the control of a graphics creation process
US6817019B1 (en) * 1996-05-31 2004-11-09 International Business Machines Corporation Tracking and propagating updates to a message-driven system of interdependent components
US6718550B1 (en) * 1996-06-26 2004-04-06 Sun Microsystems, Inc. Method and apparatus for improving the performance of object invocation
US6256712B1 (en) * 1997-08-01 2001-07-03 International Business Machines Corporation Scaleable method for maintaining and making consistent updates to caches
US6538651B1 (en) * 1999-03-19 2003-03-25 John Hayman Parametric geometric element definition and generation system and method
US20030014513A1 (en) * 2000-12-27 2003-01-16 Ruths Derek Augustus Samuel System and method for collaborative data resource representation
US7133874B2 (en) * 2001-12-13 2006-11-07 Microsoft Corporation Prototyping model for components of a software program
US20030140058A1 (en) * 2002-01-18 2003-07-24 Vitria Technology, Inc. Method and apparatus for sharing information between applications using common objects
CA2373211A1 (en) * 2002-02-22 2003-08-22 Catena Networks Canada Inc. Fault notification filtering
US20040024807A1 (en) * 2002-07-31 2004-02-05 Microsoft Corporation Asynchronous updates of weakly consistent distributed state information
US7096459B2 (en) * 2002-09-11 2006-08-22 International Business Machines Corporation Methods and apparatus for root cause identification and problem determination in distributed systems
WO2004086198A2 (en) * 2003-03-24 2004-10-07 Siebel Systems, Inc. Common common object
US7529823B2 (en) * 2003-03-27 2009-05-05 Microsoft Corporation Notifications for shared resources
US20040261060A1 (en) * 2003-06-20 2004-12-23 Haselden J. Kirk Dependency based package deployment
US20040268302A1 (en) * 2003-06-26 2004-12-30 Microsoft Corporation Framework for determining and exposing binary dependencies
US7562346B2 (en) * 2003-09-02 2009-07-14 Microsoft Corporation Software componentization for building a software product
US7644376B2 (en) * 2003-10-23 2010-01-05 Microsoft Corporation Flexible architecture for notifying applications of state changes
US7415706B1 (en) * 2003-12-01 2008-08-19 Cisco Technology, Inc. Dynamic handling of multiple software component versions for device management
US7568195B2 (en) * 2003-12-16 2009-07-28 Microsoft Corporation Determining a maximal set of dependent software updates valid for installation
US7660805B2 (en) * 2003-12-23 2010-02-09 Canon Kabushiki Kaisha Method of generating data servers for heterogeneous data sources
US20050203920A1 (en) * 2004-03-10 2005-09-15 Yu Deng Metadata-related mappings in a system
US20070156737A1 (en) * 2005-12-15 2007-07-05 First Data Corporation Application integration systems and methods
US7904892B2 (en) * 2006-01-06 2011-03-08 Northrop Grumman Corporation Systems and methods for identifying and displaying dependencies

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See references of EP2260378A4 *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101840230A (zh) * 2010-06-04 2010-09-22 浙江中控技术股份有限公司 一种监控和管理数据的方法及系统

Also Published As

Publication number Publication date
EP2260378A4 (en) 2012-10-31
JP5129351B2 (ja) 2013-01-30
CN101952799A (zh) 2011-01-19
CN101952799B (zh) 2013-06-26
JP2011513835A (ja) 2011-04-28
US20090216793A1 (en) 2009-08-27
US7860900B2 (en) 2010-12-28
EP2260378A2 (en) 2010-12-15
WO2009108427A3 (en) 2009-11-05

Similar Documents

Publication Publication Date Title
WO2009108427A2 (en) Consistently signaling state changes
US7899798B2 (en) Observing and reporting changes in complex software dependencies
CN111427859B (zh) 一种消息处理方法、装置、电子设备及存储介质
US20120066667A1 (en) Simulation environment for distributed programs
CN106789741B (zh) 消息队列的消费方法及装置
CN109032914A (zh) 资源占用数据预测方法、电子设备、存储介质
CN104424186B (zh) 一种流计算应用中实现持久化的方法及装置
US11321125B2 (en) Task priority processing method and processing device
JP2007518190A (ja) モデルイベントを用いてモデル構成要素の実行をスケジューリングするためのシステム及び方法
US10127093B1 (en) Method and apparatus for monitoring a message transmission frequency in a robot operating system
CN108874531B (zh) 用于熔断服务的方法、装置、系统及电子设备
US20210311847A1 (en) Linking computing metrics data and computing inventory data
JP2014186718A (ja) 共有メモリとのハイブリッドメッセージパッシングの方法
JP2019510327A (ja) 制御装置を駆動するための方法及び装置
CA2965283C (en) Systems and methods of subject state change notification
US10303558B2 (en) Checkpointing higher order query operators
CN114884915B (zh) 基于灰度发布的消息处理方法、装置以及设备
CN109684611B (zh) 一种字典转码方法、装置、存储介质及终端
US11416283B2 (en) Method and apparatus for processing data in process of expanding or reducing capacity of stream computing system
CN114119229A (zh) 金融产品的电子资源提醒方法及装置
CN117370457B (zh) 一种多线程数据实时同步方法、设备及介质
CN116594752A (zh) 流程调度方法、装置、设备、介质和程序产品
CN113094083A (zh) 版本构建方法、版本构建装置、电子设备及可读存储介质
CN119182660B (zh) 一种任务执行方法、装置、存储介质以及电子设备
KR101637121B1 (ko) 쓰레드 풀을 이용한 양방향 리스너 구조의 데이터 처리장치

Legal Events

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

Ref document number: 200980106643.1

Country of ref document: CN

121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 09715468

Country of ref document: EP

Kind code of ref document: A2

WWE Wipo information: entry into national phase

Ref document number: 2010548762

Country of ref document: JP

NENP Non-entry into the national phase

Ref country code: DE

WWE Wipo information: entry into national phase

Ref document number: 2009715468

Country of ref document: EP