CN112612580A - Combined event triggering method and triggering system - Google Patents

Combined event triggering method and triggering system Download PDF

Info

Publication number
CN112612580A
CN112612580A CN202011339594.0A CN202011339594A CN112612580A CN 112612580 A CN112612580 A CN 112612580A CN 202011339594 A CN202011339594 A CN 202011339594A CN 112612580 A CN112612580 A CN 112612580A
Authority
CN
China
Prior art keywords
event
events
trigger
combined
occurs
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.)
Pending
Application number
CN202011339594.0A
Other languages
Chinese (zh)
Inventor
张培原
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.)
Beijing Si Tech Information Technology Co Ltd
Original Assignee
Beijing Si Tech Information Technology Co Ltd
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 Beijing Si Tech Information Technology Co Ltd filed Critical Beijing Si Tech Information Technology Co Ltd
Priority to CN202011339594.0A priority Critical patent/CN112612580A/en
Publication of CN112612580A publication Critical patent/CN112612580A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR 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/466Transaction processing

Abstract

The invention discloses a combined event triggering method and a triggering system, which comprise the following steps: determining m events and a trigger combination event set consisting of the m events; representing a set of events comprising m events by m-bit unsigned integers; initializing an event set; the integer of each event after initialization is a, the corresponding integer after the event occurs is b, and a is not equal to b; when an event n occurs, b is assigned by a to the integer corresponding to the event n; wherein the event n belongs to an event set; judging whether a trigger combination event containing the event n reaches a trigger condition or not; and if so, triggering and executing the processing logic corresponding to the combined event. The invention realizes accurate and thread-safe combined event triggering in a multi-thread scene; the problem of packet loss under a 5G _ PROXY asynchronous routing flow is solved; the method can be applied to asynchronous routing of DCC _ PROXY, and can also be applied to triggering of combined events in other multithreading scenes.

Description

Combined event triggering method and triggering system
Technical Field
The invention relates to the technical field of multithread programming, in particular to a combined event triggering method and a combined event triggering system.
Background
The combined event is a combination of a plurality of events in the event set, and if the event set is { event a, event B, event C }, the set of combined events is { [ ], [ event a ], [ event B ], [ event C ], [ event a, event B ], [ event a, event C ], [ event B, event C ] }.
The combination event is triggered, namely when the combination event is combination 1, the processing logic corresponding to combination 1 is executed; when the combination event is combination 2, the processing logic corresponding to combination 2 is executed.
When the 5G _ PROXY is subjected to performance test, the phenomenon of packet loss in the asynchronous routing process is found, and the analyzed reason is that a combination event triggers errors in a multi-thread scene; that is, under an asynchronous flow, cleanup of the message pool does not occur before the target composition event is satisfied, resulting in the message pool being cleaned and messages being lost.
Disclosure of Invention
Aiming at the problems in the prior art, the invention provides a combined event triggering method and a combined event triggering system, which can realize accurate and thread-safe combined event triggering in a multi-thread scene.
The invention discloses a combined event triggering method, which comprises the following steps:
determining m events and a trigger combination event set consisting of the m events;
representing a set of events comprising m events by m-bit unsigned integers;
initializing an event set; the integer of each event after initialization is a, the corresponding integer after the event occurs is b, and a is not equal to b;
when an event n occurs, b is assigned by a to the integer corresponding to the event n; wherein the event n belongs to an event set;
judging whether a trigger combination event containing the event n reaches a trigger condition or not;
and if so, triggering and executing the processing logic corresponding to the combined event.
As a further improvement of the invention, if the trigger combination event containing the event n does not reach the trigger condition, after waiting for other events to occur, on the basis that the occurred event is assigned, judging again whether the trigger combination event containing the new event reaches the trigger condition.
As a further improvement of the invention, the m-bit unsigned integer is represented by a binary, the integer of each event after initialization is 0, and the corresponding integer after the event occurs is 1.
As a further improvement of the present invention, if m is 16, the initialization event set is (0000000000000000); if event 2 occurs, the set of events is (0000000000000100).
As a further improvement of the invention, the method specifically comprises the following steps:
determining 3 events A, B, C and a trigger combination event set formed by 3 events { [ event a, event B ], [ event a, event C ] };
representing a set of events comprising 3 events by a 3-bit unsigned integer and initializing the set of events to (000);
if the event A occurs, the event set is (001); at this time, the combined events [ event A, event B ], [ event A, event C ] do not reach the trigger condition;
on the basis of the occurrence of the event A, if the event B occurs, the event set is (011); at the moment, if the combined event [ event A, event B ] reaches the trigger condition, the processing logic corresponding to the [ event A, event B ] is triggered and executed;
if event C occurs based on the occurrence of event A, B, the set of events is (111); at this time, when the combined event [ event a, event C ] reaches the trigger condition, the processing logic corresponding to [ event a, event C ] is triggered to execute.
The invention also discloses a combined event triggering system, which comprises:
the event combination module is used for determining m events and a trigger combination event set formed by the m events;
the initialization module is used for representing an event set containing m events by using m-bit unsigned integers and initializing the event set; the integer of each event after initialization is a, the corresponding integer after the event occurs is b, and a is not equal to b;
the processing module is used for assigning b to an integer corresponding to the event n by a when the event n occurs; wherein the event n belongs to an event set;
the judging module is used for judging whether the trigger combination event containing the event n reaches a trigger condition or not;
and the execution module is used for triggering and executing the processing logic corresponding to the combined event when the trigger combined event containing the event n reaches the trigger condition.
As a further improvement of the present invention, the execution module is further configured to, when the trigger combination event including the event n does not reach the trigger condition, wait for another event to occur, and determine again whether the trigger combination event including the new event reaches the trigger condition on the basis of the value assignment of the occurred event.
As a further improvement of the invention, the m-bit unsigned integer is represented by a binary, the integer of each event after initialization is 0, and the corresponding integer after the event occurs is 1.
As a further improvement of the present invention, if m is 16, the initialization event set is (0000000000000000); if event 2 occurs, the set of events is (0000000000000100).
As a further improvement of the invention, the method specifically comprises the following steps:
the event combination module is used for determining 3 events A, B, C and a trigger combination event set formed by the 3 events { [ event A, event B ], [ event A, event C ] };
an initialization module, configured to represent a set of events comprising 3 events by a 3-bit unsigned integer, and initialize the set of events to (000);
the processing module is used for setting the event set as (001) when the event A occurs; on the basis of the occurrence of the event A, if the event B occurs, the event set is (011); if event C occurs based on the occurrence of event A, B, the set of events is (111);
a judging module for judging whether the trigger combination event containing the event A, B, C reaches the trigger condition; if only the event A occurs, the combined events [ event A, event B ], [ event A, event C ] do not reach the trigger condition; if event A, B occurs, the combined event [ event A, event B ] reaches the trigger condition and [ event A, event C ] does not reach the trigger condition; if the event A, B, C occurs, the combined events [ event A, event B ], [ event A, event C ] all reach the trigger condition;
the execution module is used for triggering and executing the processing logic corresponding to the event A and the event B when the combined event [ the event A and the event B ] reaches the triggering condition; and when the combined event [ event A, event C ] reaches the trigger condition, triggering to execute the processing logic corresponding to the [ event A, event C ].
Compared with the prior art, the invention has the beneficial effects that:
the invention realizes accurate and thread-safe combined event triggering in a multi-thread scene; the problem of packet loss under a 5G _ PROXY asynchronous routing flow is solved; the method can be applied to asynchronous routing of DCC _ PROXY, and can also be applied to triggering of combined events in other multithreading scenes.
Drawings
FIG. 1 is a flowchart of a combined event triggering method according to an embodiment of the present invention;
FIG. 2 is a block diagram of a combined event trigger system according to an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention clearer, the technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are some, but not all, embodiments of the present invention. All other embodiments, which can be obtained by a person skilled in the art without any inventive step based on the embodiments of the present invention, are within the scope of the present invention.
As shown in fig. 1, the present invention provides a method for triggering a combined event, including:
step 1, determining m events and a trigger combined event set consisting of the m events;
for example:
when the 5G _ PROXY is subjected to performance test, determining that 16 events exist in total, and then determining that the event set is { event 0, event 1, ·, event 15}, wherein the combined event set comprises { [ ], [ event 0], [ event 1], [ event 2], · ·, [ event 15], [ event 0, event 1], [ event 0, event 2], [ event 1, event 2], ·, [ event 0, event 1, ·, event 15] }; in the above-mentioned combined event set, which includes both trigger combined events and non-trigger combined events, for example, when performing a performance test on 5G _ PROXY, it is determined that its trigger combined event set may include { [ event 0, event 1], [ event 0, event 2], [ event 1, event 2] } and so on.
Step 2, after the event and the trigger combination event set are determined in the step 1, the event set containing m events can be represented by m-bit unsigned integers, and the event set is initialized;
wherein the content of the first and second substances,
the integer of each event after initialization is a, the corresponding integer after the event occurs is b, and a is not equal to b;
preferably, m unsigned integers are represented by binary, the integer of each event after initialization is 0, and the corresponding integer after the event is generated is assigned to be 1; for example, when m is 16, the initialization event set is (0000000000000000).
Step 3, when an event n occurs, assigning b to an integer corresponding to the event n by a; wherein the event n belongs to an event set;
for example, if event 2 occurs, then the set of events is (0000000000000100); when an event n occurs, the invention adopts bit operation to assign values, and CAS atomic operation is used for assigning values so as to ensure the thread safety with high efficiency (higher than the efficiency of a mutual exclusion lock).
Step 4, judging whether the trigger combination event containing the event n reaches a trigger condition;
after each event occurs, judging the combined event containing the event once;
step 5, if the combined event reaches the preset value, triggering and executing the processing logic corresponding to the combined event;
and 6, if not, waiting for other events to occur, and judging whether the trigger combination event containing the new event reaches the trigger condition again on the basis of the value assignment of the occurred event.
The codes for realizing the steps 1-6 are as follows:
if(event 2happen)
__sync_fetch_and_add(&(event_set),1<<2);
if(event_set==0000 0000 0000 1100)
do something when event 2 and event 3 happen…
if(event_set==0000 0000 0000 0110)
do something when event 1 and event 2 happen…
note: events n are counted from 0 in order from right to left.
The present invention takes 3 events A, B, C as an example, and the triggering method of the present invention is explained as follows:
s1, determining 3 events A, B, C and a combined event set consisting of the 3 events, and determining a trigger combined event set of the combined event set to be { [ event A, event B ], [ event A, event C ] };
s2, representing the event set containing 3 events by using a 3-bit unsigned integer, and initializing the event set to be (000);
s3, when any event occurs, assigning the corresponding unsigned integer to be 1 from 0;
s4, if the event A occurs, the event set is (001); at this time, both the two combined events [ event A, event B ], [ event A, event C ] do not reach the trigger condition;
s5, on the basis of the occurrence of the event A, if the event B occurs, the event set is (011); at the moment, if the combined event [ event A, event B ] reaches the trigger condition, the processing logic corresponding to the [ event A, event B ] is triggered and executed;
s6, when an event C occurs on the basis of the occurrence of the event A, B, the event set is (111); at this time, when the combined event [ event a, event C ] reaches the trigger condition, the processing logic corresponding to [ event a, event C ] is triggered to execute.
Further, in the above steps, the event A, B, C may occur simultaneously or separately; and triggering can be carried out after any trigger combination event reaches the trigger condition.
As shown in fig. 2, the present invention further provides a combined event triggering system, including:
the event combination module is used for realizing the step 1;
an initialization module for implementing the step 2;
the processing module is used for realizing the step 3;
the judging module is used for judging to realize the step 4;
and the execution module is used for realizing the steps 5 and 6.
The present invention takes 3 events A, B, C as an example, and the trigger system of the present invention is explained as follows:
the event combination module is used for determining 3 events A, B, C and a trigger combination event set formed by the 3 events { [ event A, event B ], [ event A, event C ] };
an initialization module, configured to represent a set of events comprising 3 events by a 3-bit unsigned integer, and initialize the set of events to (000);
the processing module is used for setting the event set as (001) when the event A occurs; on the basis of the occurrence of the event A, if the event B occurs, the event set is (011); if event C occurs based on the occurrence of event A, B, the set of events is (111);
a judging module for judging whether the trigger combination event containing the event A, B, C reaches the trigger condition; if only the event A occurs, the combined events [ event A, event B ], [ event A, event C ] do not reach the trigger condition; if event A, B occurs, the combined event [ event A, event B ] reaches the trigger condition and [ event A, event C ] does not reach the trigger condition; if the event A, B, C occurs, the combined events [ event A, event B ], [ event A, event C ] all reach the trigger condition;
the execution module is used for triggering and executing the processing logic corresponding to the event A and the event B when the combined event [ the event A and the event B ] reaches the triggering condition; and when the combined event [ event A, event C ] reaches the trigger condition, triggering to execute the processing logic corresponding to the [ event A, event C ].
Example (b):
assuming a bus from Beijing to Tianjin is provided, departure conditions are that the bus is full of oil and the bus is full of passengers, and only one passenger can sit at present, and an event set { [ the bus is full of oil ], [ the red as the last passenger sits on the bus ], [ the green as the last passenger sits on the bus ] } is an event 0, an event 1 and an event 2 respectively. When the event 0, 1 or the event 0, 2 occurs simultaneously, a trigger condition is reached, and bus departure is triggered. That is, when any of the events 0, 1, 2 is satisfied, it is checked whether the trigger condition is fulfilled, and if so, the bus occurs, otherwise, the occurrence of other events is waited.
Further, event 3: [ passengers need to get on at 8:00 ], when the events 0, 1, 3 or 0, 2, 3 happen simultaneously, the triggering condition is reached, and bus departure is triggered. That is, when any of the events 0, 1, 2, and 3 is satisfied, it is checked whether the trigger condition is fulfilled, and if so, the bus occurs, otherwise, the occurrence of other events is waited.
The invention has the advantages that:
the invention realizes accurate and thread-safe combined event triggering in a multi-thread scene; the problem of packet loss under a 5G _ PROXY asynchronous routing flow is solved; the method can be applied to asynchronous routing of DCC _ PROXY, and can also be applied to triggering of combined events in other multithreading scenes.
The above is only a preferred embodiment of the present invention, and is not intended to limit the present invention, and various modifications and changes will occur to those skilled in the art. Any modification, equivalent replacement, or improvement made within the spirit and principle of the present invention should be included in the protection scope of the present invention.

Claims (10)

1. A method for triggering a combined event, comprising:
determining m events and a trigger combination event set consisting of the m events;
representing a set of events comprising m events by m-bit unsigned integers;
initializing an event set; the integer of each event after initialization is a, the corresponding integer after the event occurs is b, and a is not equal to b;
when an event n occurs, b is assigned by a to the integer corresponding to the event n; wherein the event n belongs to an event set;
judging whether a trigger combination event containing the event n reaches a trigger condition or not;
and if so, triggering and executing the processing logic corresponding to the combined event.
2. The method for triggering of claim 1, wherein if the trigger combination event containing the event n does not reach the trigger condition, after waiting for other events to occur, and based on the value assigned to the event, judging again whether the trigger combination event containing the new event reaches the trigger condition.
3. A triggering method as claimed in claim 2, characterized in that m unsigned integers are represented by binary, the integer of each event after initialization being 0 and the corresponding integer after the event has occurred being 1.
4. The triggering method of claim 3, wherein if m ═ 16, then the set of initialization events is (0000000000000000); if event 2 occurs, the set of events is (0000000000000100).
5. The triggering method of claim 4, specifically comprising:
determining 3 events A, B, C and a trigger combination event set formed by 3 events { [ event a, event B ], [ event a, event C ] };
representing a set of events comprising 3 events by a 3-bit unsigned integer and initializing the set of events to (000);
if the event A occurs, the event set is (001); at this time, the combined events [ event A, event B ], [ event A, event C ] do not reach the trigger condition;
on the basis of the occurrence of the event A, if the event B occurs, the event set is (011); at the moment, if the combined event [ event A, event B ] reaches the trigger condition, the processing logic corresponding to the [ event A, event B ] is triggered and executed;
if event C occurs based on the occurrence of event A, B, the set of events is (111); at this time, when the combined event [ event a, event C ] reaches the trigger condition, the processing logic corresponding to [ event a, event C ] is triggered to execute.
6. A combined event triggering system, comprising:
the event combination module is used for determining m events and a trigger combination event set formed by the m events;
the initialization module is used for representing an event set containing m events by using m-bit unsigned integers and initializing the event set; the integer of each event after initialization is a, the corresponding integer after the event occurs is b, and a is not equal to b;
the processing module is used for assigning b to an integer corresponding to the event n by a when the event n occurs; wherein the event n belongs to an event set;
the judging module is used for judging whether the trigger combination event containing the event n reaches a trigger condition or not;
and the execution module is used for triggering and executing the processing logic corresponding to the combined event when the trigger combined event containing the event n reaches the trigger condition.
7. The trigger system of claim 6, wherein the execution module is further configured to, when the trigger combination event including the event n does not reach the trigger condition, wait for other events to occur, and determine again whether the trigger combination event including the new event reaches the trigger condition based on the assigned value of the occurred event.
8. The trigger system of claim 7, wherein the m-bit unsigned integer is represented by a binary number, the integer for each event after initialization is 0, and the corresponding integer after the event occurs is 1.
9. The trigger system of claim 8, wherein if m ═ 16, then the initialization event set is (0000000000000000); if event 2 occurs, the set of events is (0000000000000100).
10. The trigger system of claim 9, further comprising:
the event combination module is used for determining 3 events A, B, C and a trigger combination event set formed by the 3 events { [ event A, event B ], [ event A, event C ] };
an initialization module, configured to represent a set of events comprising 3 events by a 3-bit unsigned integer, and initialize the set of events to (000);
the processing module is used for setting the event set as (001) when the event A occurs; on the basis of the occurrence of the event A, if the event B occurs, the event set is (011); if event C occurs based on the occurrence of event A, B, the set of events is (111);
a judging module for judging whether the trigger combination event containing the event A, B, C reaches the trigger condition; if only the event A occurs, the combined events [ event A, event B ], [ event A, event C ] do not reach the trigger condition; if event A, B occurs, the combined event [ event A, event B ] reaches the trigger condition and [ event A, event C ] does not reach the trigger condition; if the event A, B, C occurs, the combined events [ event A, event B ], [ event A, event C ] all reach the trigger condition;
the execution module is used for triggering and executing the processing logic corresponding to the event A and the event B when the combined event [ the event A and the event B ] reaches the triggering condition; and when the combined event [ event A, event C ] reaches the trigger condition, triggering to execute the processing logic corresponding to the [ event A, event C ].
CN202011339594.0A 2020-11-25 2020-11-25 Combined event triggering method and triggering system Pending CN112612580A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011339594.0A CN112612580A (en) 2020-11-25 2020-11-25 Combined event triggering method and triggering system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011339594.0A CN112612580A (en) 2020-11-25 2020-11-25 Combined event triggering method and triggering system

Publications (1)

Publication Number Publication Date
CN112612580A true CN112612580A (en) 2021-04-06

Family

ID=75225238

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011339594.0A Pending CN112612580A (en) 2020-11-25 2020-11-25 Combined event triggering method and triggering system

Country Status (1)

Country Link
CN (1) CN112612580A (en)

Citations (21)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050092825A1 (en) * 2003-11-04 2005-05-05 Captech Ventures, Inc. System and method for RFID system integration
US20050165881A1 (en) * 2004-01-23 2005-07-28 Pipelinefx, L.L.C. Event-driven queuing system and method
CN1708678A (en) * 2002-11-07 2005-12-14 斯耐普昂技术有限公司 Vehicle data stream pause on data trigger value
RU91205U1 (en) * 2009-10-01 2010-01-27 ЗАО "Лаборатория Касперского" ASYNCHRONOUS EVENT PROCESSING SYSTEM FOR DETECTING UNKNOWN MALICIOUS APPLICATIONS
US20120025091A1 (en) * 2010-07-27 2012-02-02 Institute Of Nuclear Energy Research Atomic Energy Council Executive Yuan Method of coincidence detection and tomography system using the same
US20140059116A1 (en) * 2012-08-22 2014-02-27 Lg Electronics Inc. Apparatus and method for processing an interactive service
CN103650525A (en) * 2012-06-19 2014-03-19 索尼公司 Extensions to trigger parameters table for interactive television
CN104376237A (en) * 2013-08-13 2015-02-25 中国科学院沈阳自动化研究所 Safety control method and safety control system for information in production procedures
CN104539504A (en) * 2014-12-31 2015-04-22 北京海尔广科数字技术有限公司 Event triggering method and device
CN104580973A (en) * 2014-12-30 2015-04-29 中国科学院深圳先进技术研究院 Recording and playback method and device of virtual surgical simulation process
US20150247883A1 (en) * 2014-02-28 2015-09-03 Rohde & Schwarz Gmbh & Co. Kg Digital oscilloscope and a method with parallel acquisition and signal post-processing
US9531735B1 (en) * 2015-03-23 2016-12-27 Bitdefender IPR Management Ltd. Systems and methods for delivering introspection notifications from a virtual machine
US20180004943A1 (en) * 2016-07-01 2018-01-04 Bitdefender IPR Management Ltd. Systems and Methods of Asynchronous Analysis of Event Notifications for Computer Security Applications
WO2018125989A2 (en) * 2016-12-30 2018-07-05 Intel Corporation The internet of things
US20180239655A1 (en) * 2017-02-20 2018-08-23 Tsinghua University Method for Processing Asynchronous Event by Checking Device and Checking Device
CN109614413A (en) * 2018-12-12 2019-04-12 上海金融期货信息技术有限公司 A kind of memory streaming computing plateform system
CN110196743A (en) * 2018-12-17 2019-09-03 腾讯科技(深圳)有限公司 Method, apparatus, storage medium and the electronic device of event triggering
CN110339571A (en) * 2018-04-08 2019-10-18 腾讯科技(深圳)有限公司 Event generation method and device, storage medium and electronic device
US20200020196A1 (en) * 2018-07-16 2020-01-16 Igt System and method for utilizing mobile device to provide bonus awards
CN111301317A (en) * 2020-02-28 2020-06-19 深圳市元征科技股份有限公司 Event generation method, event generation device and vehicle-mounted equipment
CN111813406A (en) * 2020-07-14 2020-10-23 深圳前海移联科技有限公司 Dynamic event-driven model

Patent Citations (22)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1708678A (en) * 2002-11-07 2005-12-14 斯耐普昂技术有限公司 Vehicle data stream pause on data trigger value
US20050092825A1 (en) * 2003-11-04 2005-05-05 Captech Ventures, Inc. System and method for RFID system integration
US20050165881A1 (en) * 2004-01-23 2005-07-28 Pipelinefx, L.L.C. Event-driven queuing system and method
RU91205U1 (en) * 2009-10-01 2010-01-27 ЗАО "Лаборатория Касперского" ASYNCHRONOUS EVENT PROCESSING SYSTEM FOR DETECTING UNKNOWN MALICIOUS APPLICATIONS
US20120025091A1 (en) * 2010-07-27 2012-02-02 Institute Of Nuclear Energy Research Atomic Energy Council Executive Yuan Method of coincidence detection and tomography system using the same
CN103650525A (en) * 2012-06-19 2014-03-19 索尼公司 Extensions to trigger parameters table for interactive television
CN104584574A (en) * 2012-08-22 2015-04-29 Lg电子株式会社 Apparatus and method for processing an interactive service
US20140059116A1 (en) * 2012-08-22 2014-02-27 Lg Electronics Inc. Apparatus and method for processing an interactive service
CN104376237A (en) * 2013-08-13 2015-02-25 中国科学院沈阳自动化研究所 Safety control method and safety control system for information in production procedures
US20150247883A1 (en) * 2014-02-28 2015-09-03 Rohde & Schwarz Gmbh & Co. Kg Digital oscilloscope and a method with parallel acquisition and signal post-processing
CN104580973A (en) * 2014-12-30 2015-04-29 中国科学院深圳先进技术研究院 Recording and playback method and device of virtual surgical simulation process
CN104539504A (en) * 2014-12-31 2015-04-22 北京海尔广科数字技术有限公司 Event triggering method and device
US9531735B1 (en) * 2015-03-23 2016-12-27 Bitdefender IPR Management Ltd. Systems and methods for delivering introspection notifications from a virtual machine
US20180004943A1 (en) * 2016-07-01 2018-01-04 Bitdefender IPR Management Ltd. Systems and Methods of Asynchronous Analysis of Event Notifications for Computer Security Applications
WO2018125989A2 (en) * 2016-12-30 2018-07-05 Intel Corporation The internet of things
US20180239655A1 (en) * 2017-02-20 2018-08-23 Tsinghua University Method for Processing Asynchronous Event by Checking Device and Checking Device
CN110339571A (en) * 2018-04-08 2019-10-18 腾讯科技(深圳)有限公司 Event generation method and device, storage medium and electronic device
US20200020196A1 (en) * 2018-07-16 2020-01-16 Igt System and method for utilizing mobile device to provide bonus awards
CN109614413A (en) * 2018-12-12 2019-04-12 上海金融期货信息技术有限公司 A kind of memory streaming computing plateform system
CN110196743A (en) * 2018-12-17 2019-09-03 腾讯科技(深圳)有限公司 Method, apparatus, storage medium and the electronic device of event triggering
CN111301317A (en) * 2020-02-28 2020-06-19 深圳市元征科技股份有限公司 Event generation method, event generation device and vehicle-mounted equipment
CN111813406A (en) * 2020-07-14 2020-10-23 深圳前海移联科技有限公司 Dynamic event-driven model

Non-Patent Citations (6)

* Cited by examiner, † Cited by third party
Title
哈哈不是嘎嘎: ""__sync_fetch_and_add"", Retrieved from the Internet <URL:https://www.cnblogs.com/silentNight/p/5685629.html> *
张国印;曲家兴;付小晶;何志昌;: "一种基于组合事件行为触发的Android恶意行为检测方法", 计算机科学, no. 05 *
张玉平: "IE浏览器事件编程", 电脑编程技巧与维护, no. 10 *
戎玫;: "实时系统动态行为模型的一种形式分析方法", 计算机应用研究, no. 09, 15 September 2009 (2009-09-15) *
王雪松;钱俊彦;赵岭忠;高荣亮;: "基于并发事务逻辑的语义Web服务组合", 计算机科学, no. 10, 15 October 2012 (2012-10-15) *
谢森义;黄朝兵;: "基于自适应稀疏组合学习的异常事件检测", 现代计算机(专业版), no. 14, 15 May 2018 (2018-05-15) *

Similar Documents

Publication Publication Date Title
Den Boer et al. An attack on the last two rounds of MD4
US5043880A (en) Data flow processor which combines packets having same identification and destination and synchronizes loop variables for detecting processing loop termination
CA2635170C (en) Managing configurations of a firewall
US20090217270A1 (en) Negating initiative for select entries from a shared, strictly fifo initiative queue
CN111597040B (en) Resource allocation method, device, storage medium and electronic equipment
US20070192572A1 (en) Minimum processor instruction for implementing weighted fair queuing and other priority queuing
JP2003280924A (en) Method for processing event having hierarchical structure in communication equipment system
US10824469B2 (en) Reordering avoidance for flows during transition between slow-path handling and fast-path handling
US6230230B1 (en) Elimination of traps and atomics in thread synchronization
Caldwell a Possible Solution to the E/ι Puzzle
CN112612580A (en) Combined event triggering method and triggering system
CN113472893B (en) Data processing method, device, computing equipment and computer storage medium
US5860019A (en) Data driven information processor having pipeline processing units connected in series including processing portions connected in parallel
CN113783973A (en) Method for realizing lock-free of data flow under multi-core condition by NAT port allocation
US6988189B1 (en) Ternary content addressable memory based multi-dimensional multi-way branch selector and method of operating same
CN109787916B (en) Flow control method and system
EP0884684A1 (en) Multiple interrupt handling method and apparatus
CN112395593A (en) Instruction execution sequence monitoring method and device, storage medium and computer equipment
CN106534100A (en) Distributed attack detection method and device based on custom field for use in switch chip
CN110430258B (en) Distributed lock management method and device
CN113742071A (en) Task processing method and electronic equipment
US20160316044A1 (en) Methods And Systems To Embed Valid-Field (VF) Bits In Classification Keys For Network Packet Frames
CN112541041A (en) Data processing method, device, server and storage medium
CN111061585A (en) Data recovery method, device and equipment and readable storage medium
US7257216B2 (en) Selective message discard

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination