CN104572036B - Event processing method and device - Google Patents

Event processing method and device Download PDF

Info

Publication number
CN104572036B
CN104572036B CN201310476265.4A CN201310476265A CN104572036B CN 104572036 B CN104572036 B CN 104572036B CN 201310476265 A CN201310476265 A CN 201310476265A CN 104572036 B CN104572036 B CN 104572036B
Authority
CN
China
Prior art keywords
event
processing
processed
execution queue
attribute value
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.)
Active
Application number
CN201310476265.4A
Other languages
Chinese (zh)
Other versions
CN104572036A (en
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.)
Tencent Technology Shenzhen Co Ltd
Original Assignee
Tencent Technology Shenzhen 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 Tencent Technology Shenzhen Co Ltd filed Critical Tencent Technology Shenzhen Co Ltd
Priority to CN201310476265.4A priority Critical patent/CN104572036B/en
Publication of CN104572036A publication Critical patent/CN104572036A/en
Application granted granted Critical
Publication of CN104572036B publication Critical patent/CN104572036B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • Management, Administration, Business Operations System, And Electronic Commerce (AREA)

Abstract

The embodiment of the invention discloses an event processing method and device, relates to the technical field of computers, and solves the problem that a non-linear event execution queue with higher logic complexity is difficult to process in a mode of processing an event through an Async technology, wherein the event execution queue can only be linearly executed. The method comprises the following steps: distributing event identity marks for the events added into the event execution queue; processing the events in the event execution queue to generate a processing result; judging whether the processing result meets a preset condition or not, and judging whether the preset condition comprises the event identity mark or not; and if the processing result meets the preset condition and the preset condition comprises the event identity, processing the event corresponding to the event identity according to the event identity. The invention is suitable for event processing in the field of computers.

Description

Event processing method and device
Technical Field
The present invention relates to the field of computer technologies, and in particular, to a method and an apparatus for processing an event.
Background
Currently, in the field of computers, the handling of events generally includes asynchronous operations and synchronous operations. Asynchronous operation means that when one event is processed, other events can be processed at the same time. And a synchronous operation means that while one event is processed, other events cannot be processed until the event is completed. With the improvement of various functions in computer technology, the processed services are further complicated, and various events are more and more. Taking modifying a password as an example, the current simpler password modification process also includes a plurality of events: event I, confirming whether an account of a user logs in; event two, if the account is logged in, receiving a new password input by the user; event three, checking whether the new password is legal or not; event four, if the new password is legal, submitting password modification to a server; and event five, if the password is successfully modified, prompting the user that the password is successfully modified. It can be seen that the execution of each event needs to be dependent on the last event.
At present, if a series of multiple event operations are to be completed, the application generally needs to be applied to asynchronous (Async) technology, and the Async technology generally includes two processing manners for events, one of which is to sequentially detect whether each event in an event execution queue is completed, and if so, execute subsequent events of the completed events in the event execution queue. The other method is to monitor an event, and if the completion of a certain event is monitored, the subsequent events of the event in the queue are executed. With the increase of data traffic, the number of events in the current event execution queue also gradually increases, and the service logic complexity of the events also gradually increases, for example, the event execution queue may not only execute from the head of the queue to the tail of the queue in sequence, but also execute out of sequence, and the like, that is, the current event execution queue does not execute linearly. While the event processing mode through the Async technology can only execute the queue according to the linear execution event, and the nonlinear event execution queue with high logic complexity is difficult to process.
Disclosure of Invention
Embodiments of the present invention provide an event processing method and apparatus, which can solve the problem that in the prior art, a mode of processing an event through an Async technique can only execute an event execution queue according to a linear manner, and is difficult to process a non-linear event execution queue with high logic complexity.
In order to achieve the purpose, the invention adopts the following technical scheme:
a method for processing an event comprises the following steps:
distributing event identity marks for the events added into the event execution queue;
processing the events in the event execution queue to generate a processing result;
judging whether the processing result meets a preset condition or not, and judging whether the preset condition comprises the event identity mark or not;
and if the processing result meets the preset condition and the preset condition comprises the event identity, processing the event corresponding to the event identity according to the event identity.
An apparatus for processing an event, comprising:
the distribution unit is used for distributing event identity identification for the event added into the event execution queue;
the processing unit is used for processing the events in the event execution queue to generate a processing result;
the judging unit is used for judging whether the processing result generated by the processing unit meets a preset condition or not and judging whether the preset condition comprises the event identity;
the processing unit is further configured to process an event corresponding to the event identity according to the event identity when the judging unit judges that the processing result meets the preset condition and the preset condition includes the event identity.
According to the event processing method and device provided by the embodiment of the invention, the event identification is distributed to each event entering the event execution queue, so that when each event is processed, if a certain processing result obtained by processing meets the preset condition, the event corresponding to the event identification can be processed through the event identification in the preset condition, the jump processing or the return processing can be performed on the event execution queue, and the nonlinear event execution queue with higher logic complexity is met. However, in the prior art, the event processing method through the Async technology can only perform the event execution queue linearly, and can only process the events in sequence according to the sequence of the events in the event execution queue. Therefore, the invention can process the nonlinear event execution queue with higher logic complexity.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts.
Fig. 1 is a flowchart of an event processing method according to an embodiment of the present invention;
FIG. 2 is a flowchart of an event processing method according to another embodiment of the present invention;
fig. 3 is a schematic structural diagram of an event processing apparatus according to an embodiment of the present invention.
Detailed Description
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 only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
In order to make the advantages of the technical solutions of the present invention clearer, the present invention is described in detail below with reference to the accompanying drawings and examples.
As shown in fig. 1, a method for processing an event according to an embodiment of the present invention includes:
101. and allocating event identification for the event added into the event execution queue.
The event id may be sequentially allocated according to an event sequence in the event execution queue, or may be randomly allocated, but is not limited thereto.
102. And processing the events in the event execution queue to generate a processing result.
103. And judging whether the processing result meets a preset condition or not, and judging whether the preset condition comprises the event identity mark or not.
104. And if the processing result meets the preset condition and the preset condition comprises the event identity, processing the event corresponding to the event identity according to the event identity.
The preset condition may be preset according to different events respectively. For example, in the environment of password input modification, the first step is to receive the account and the password input by the user, and the second step is to determine whether the account and the password are successfully input by the user. At this time, for the event in the second step, there may be two preset conditions, one is that the user successfully inputs the account and the password, and the other is that the user unsuccessfully inputs the account and the password, and the two preset conditions may respectively include the event id in the third step and the event id in the fourth step, so that the third step can be respectively executed: prompting the user to modify the password and providing a new password input box, or executing the fourth step: prompting the user that the account number and the password are input wrongly, and returning to re-receiving the account number and the password input by the user.
It should be noted that the execution subject of the event processing method provided by the embodiment of the present invention is an event processing apparatus, and the event processing apparatus may be run in a terminal device such as a computer. The event execution queue processed by the embodiment of the invention can be a linear event execution queue or a nonlinear event execution queue with higher logic complexity.
In the event processing method provided by the embodiment of the present invention, the event identifier is allocated to each event entering the event execution queue, so that when each event is processed, if a certain processing result obtained by processing meets a preset condition, an event corresponding to the event identifier can be processed through the event identifier in the preset condition, thereby performing skip processing or return processing on the event execution queue, and meeting a nonlinear event execution queue with higher logic complexity. However, in the prior art, the event processing method through the Async technology can only perform the event execution queue linearly, and can only process the events in sequence according to the sequence of the events in the event execution queue. Therefore, the invention can process the nonlinear event execution queue with higher logic complexity.
Further, a more specific embodiment is listed below, and as shown in fig. 2, a method for processing an event according to another embodiment of the present invention includes:
201. and adding each event into the event execution queue.
In the computer field, a plurality of events may need to be performed in order to complete a series of processes. For example, in an environment of modifying a password, an account and a password input by a user may need to be received, whether the input account and password are successful or not is judged, if the account and password are successfully input, the user is prompted to modify the password, a new password input box is provided, and the like. Therefore, when processing this series of flows, each event is generally put into an event execution queue for processing.
202. And allocating event identification and attribute values for the events added into the event execution queue.
The event id may be sequentially allocated according to an event sequence in the event execution queue, or may be randomly allocated, and a specific event may be designated and allocated with the event id, but is not limited thereto.
Wherein the attribute values comprise a first attribute value and a second attribute value; the first attribute value is used for indicating that other events after the event in the event execution queue are blocked from being processed when the event is processed; the second attribute value is used for indicating that other events after the event in the event execution queue are not blocked from being processed when the event is processed. For example, a first attribute value is represented by a true value and a second attribute value is represented by a false value. By setting the attribute value, whether the subsequent event is blocked or not is controlled, and the execution of each event can be effectively controlled.
203. And judging whether an event is unprocessed before the event to be processed in the event execution queue.
If no event is not processed before the event to be processed in the event execution queue, executing step 204; if there is an event unprocessed before the pending event in the event execution queue, go to step 206.
Specifically, if an event is not processed before the pending event in the event execution queue, it is required to determine whether the pending event blocks the execution of the pending event.
204. And processing the event to be processed, wherein the event to be processed enters an execution state.
Specifically, each event may be maintained in three states, when an event is not processed, the event may be set to a waiting state (called waiting for short), when the event is being processed, the event may be set to an executing state (called executing for short), and when the event is processed, the event may be set to a completed state (called finished for short).
In addition, when an event to be processed is processed, the event to be processed may be divided into two types according to different assigned attribute values of each event, where a first attribute value true may correspond to a function wait ([ id, ] fn), and a second attribute value false corresponds to a function run ([ id, ] fn, where id represents an event identity of the event, and fn represents a processing manner of the event.
205. And generating a processing result, and enabling the event to be processed to enter a completed state to form a completed event.
After step 205, step 208 is performed.
206. And judging whether the attribute value of the unprocessed event is the first attribute value or the second attribute value.
If the attribute value of the unprocessed event is determined to be the first attribute value true, step 207 is executed. If the attribute value of the unprocessed event is determined to be the second attribute value false, step 204 is executed.
207. And not processing the event to be processed, and enabling the event to be processed to enter a waiting state. After step 207, execution returns to step 203.
208. And judging whether the processing result meets a preset condition or not.
If the processing result does not satisfy the predetermined condition, go to step 209.
If the processing result satisfies the predetermined condition, step 210 is executed.
209. Processing a next event of the completed events in an event execution queue;
and the next event and the completed event are adjacent in the event execution queue, namely, the next event and the completed event are processed according to the sequence of the events in the event execution queue.
210. And judging whether the preset condition comprises the event identity identification.
If the preset condition is determined to include the event identifier, step 211 is executed.
If the preset condition is determined not to include the event id, step 212 is executed.
Wherein the preset condition may be an event handling error.
211. And processing the event corresponding to the event identity according to the event identity.
When the event identity is determined to be present in the preset condition, the event corresponding to the event identity may be processed according to the event identity, and specifically may be executed through a function exec ([ id ]), that is, the event corresponding to the id is executed.
212. And processing the event execution queue according to a preset error processing strategy.
For example, event handling error information may be generated and presented. For example, in a password modification environment, if an account and a password input by a user are overtime, overtime information can be generated and displayed to prompt the user that the input operation is overtime. The function error ([ id, ] fn) can be used for processing the event execution queue according to a preset error processing strategy, namely, when the event processing has an error, the function error ([ id, ] fn) can be executed.
For example, the following pseudo code is used as an example to describe the execution modes of the run ([ id, ] fn), wait ([ id, ] fn), exec ([ id ]) and error ([ id, ] fn) functions:
Figure BDA0000394869530000061
Figure BDA0000394869530000071
the pseudo code indicates that the event with the event identity identified as first is processed in an fn _1 manner, and since the application of run ('first', fn _1), the event with the event identity identified as second can be processed during the event first processing, and specifically, the event second is processed in an fn _2 manner. Since the event second applies run ('second', fn _2), when the event second processes, the event whose event identity is identified as third can also be processed in the manner of fn _ 3. If the event thread applies wait ('thread', fn _3), the subsequent events cannot be processed during the processing of the event thread. After the event thread processing is completed, processing the event with the event identifier of four, specifically, taking judgment of gender as an example, if the gender is male, directly skipping processing the event with the event identity identifier of fifth through exec ('fifth'), and if the gender is female, executing error processing through exec ('error').
It should be noted that the execution subject of the event processing method provided by the embodiment of the present invention is an event processing apparatus, and the event processing apparatus may be run in a terminal device such as a computer. The event execution queue processed by the embodiment of the invention can be a linear event execution queue or a nonlinear event execution queue with higher logic complexity.
In the event processing method provided in another embodiment of the present invention, event identifiers are allocated to events entering an event execution queue, so that when each event is processed, if a certain processing result obtained by processing meets a preset condition, an event corresponding to the event identifier may be processed through the event identifier in the preset condition, thereby performing skip processing or return processing on the event execution queue, and meeting a nonlinear event execution queue with higher logic complexity. However, in the prior art, the event processing method through the Async technology can only perform the event execution queue linearly, and can only process the events in sequence according to the sequence of the events in the event execution queue. Therefore, the invention can process the nonlinear event execution queue with higher logic complexity.
Corresponding to the event processing method shown in fig. 1 and fig. 2, as shown in fig. 3, an event processing apparatus provided in an embodiment of the present invention includes:
an assigning unit 31, configured to assign an event identity to the event added into the event execution queue.
And the processing unit 32 is configured to process the events in the event execution queue to generate a processing result.
A determining unit 33, configured to determine whether the processing result generated by the processing unit 32 meets a preset condition, and determine whether the preset condition includes the event identifier.
The processing unit 32 is further configured to process the event corresponding to the event identity according to the event identity when the determining unit 33 determines that the processing result meets the preset condition and the preset condition includes the event identity.
Further, as shown in fig. 3, the allocating unit 31 is further configured to:
and assigning attribute values to the events added into the event execution queue.
Wherein the attribute values include a first attribute value and a second attribute value. The first attribute value is used for indicating that other events after the event in the event execution queue are blocked from being processed when the event is processed. The second attribute value is used for indicating that other events after the event in the event execution queue are not blocked from being processed when the event is processed.
Further, as shown in fig. 3, the determining unit 33 is further configured to:
and judging whether an event is unprocessed before the event to be processed in the event execution queue.
The processing unit 32 is further configured to process the event to be processed and generate a processing result when the determining unit 33 determines that no event is processed before the event to be processed.
Further, as shown in fig. 3, the determining unit 33 is further configured to:
when the determining unit 33 determines that the event is not processed before the event to be processed, it determines that the attribute value of the unprocessed event is the first attribute value or the second attribute value.
The processing unit 32 is configured to, if the determining unit 33 determines that the attribute value of the unprocessed event is the first attribute value, not process the event to be processed.
The processing unit 32 is configured to process the event to be processed when the determining unit 33 determines that the attribute value of the unprocessed event is the second attribute value.
Specifically, the preset condition may be an event handling error.
As shown in fig. 3, the processing unit 32 is further configured to:
and when the processing result is an event processing error and the preset condition does not comprise the event identity, processing the event execution queue according to a preset error processing strategy.
Specifically, the processing unit 32 is configured to:
and generating event processing error information and displaying the event processing error information.
The event processing device provided by the embodiment of the invention allocates the event identification for each event entering the event execution queue, so that when each event is processed, if a certain processing result obtained by processing meets the preset condition, the event corresponding to the event identification can be processed through the event identification in the preset condition, thereby performing jump processing or return processing on the event execution queue, and meeting the requirement of a nonlinear event execution queue with higher logic complexity. However, in the prior art, the event processing method through the Async technology can only perform the event execution queue linearly, and can only process the events in sequence according to the sequence of the events in the event execution queue. Therefore, the invention can process the nonlinear event execution queue with higher logic complexity.
Through the above description of the embodiments, those skilled in the art will clearly understand that the present invention may be implemented by software plus necessary general hardware, and certainly may also be implemented by hardware, but in many cases, the former is a better embodiment. Based on such understanding, the technical solutions of the present invention may be substantially implemented or a part of the technical solutions contributing to the prior art may be embodied in the form of a software product, which is stored in a readable storage medium, such as a floppy disk, a hard disk, or an optical disk of a computer, and includes several instructions for enabling a computer device (which may be a personal computer, a server, or a network device) to execute the methods according to the embodiments of the present invention.
The above description is only for the specific embodiments of the present invention, but the scope of the present invention is not limited thereto, and any person skilled in the art can easily conceive of the changes or substitutions within the technical scope of the present invention, and all the changes or substitutions should be covered within the scope of the present invention. Therefore, the protection scope of the present invention shall be subject to the protection scope of the claims.

Claims (10)

1. A method for processing an event, comprising:
distributing event identity marks for the events added into the event execution queue;
processing the events in the event execution queue to generate a processing result;
judging whether the processing result meets a preset condition or not, and judging whether the preset condition comprises the event identity mark or not;
if the processing result meets the preset condition and the preset condition comprises the event identity, processing the event corresponding to the event identity according to the event identity so as to implement jump processing or return processing on the event execution queue;
before the processing the event in the event execution queue and generating the processing result, the method further includes:
assigning attribute values to the events added to the event execution queue; the attribute values comprise a first attribute value and a second attribute value; the first attribute value is used for indicating that other events after the event in the event execution queue are blocked from being processed when the event is processed; the second attribute value is used for indicating that other events after the event in the event execution queue are not blocked from being processed when the event is processed, so that the processing of the subsequent event is controlled through the attribute value, and the execution of each event in the event execution queue is controlled.
2. The event processing method according to claim 1, wherein the processing the events in the event execution queue to generate the processing result includes:
judging whether an event is unprocessed before the event to be processed in the event execution queue;
and if no event is not processed before the event to be processed is judged, processing the event to be processed and generating a processing result.
3. The method according to claim 2, wherein after the determining whether there is an event unprocessed before the event to be processed in the event execution queue, the method further comprises:
if the event is judged to be unprocessed before the event to be processed, judging that the attribute value of the unprocessed event is a first attribute value or a second attribute value;
if the attribute value of the unprocessed event is judged to be the first attribute value, the event to be processed is not processed;
and if the attribute value of the unprocessed event is judged to be the second attribute value, processing the event to be processed.
4. The event processing method according to any one of claims 1 to 3, wherein the preset condition is an event processing error;
after determining whether the processing result meets a preset condition and determining whether the preset condition includes the event identity, the method further includes:
and if the processing result is an event processing error and the preset condition does not comprise the event identity, processing the event execution queue according to a preset error processing strategy.
5. The event processing method according to claim 4, wherein the processing the event execution queue according to a preset error handling policy includes:
and generating event processing error information and displaying the event processing error information.
6. An apparatus for processing an event, comprising:
the distribution unit is used for distributing event identity identification for the event added into the event execution queue;
the processing unit is used for processing the events in the event execution queue to generate a processing result;
the judging unit is used for judging whether the processing result generated by the processing unit meets a preset condition or not and judging whether the preset condition comprises the event identity;
the processing unit is further configured to, when the judging unit judges that the processing result meets the preset condition and the preset condition includes the event identity, process an event corresponding to the event identity according to the event identity, so as to implement jump processing or return processing on the event execution queue;
the allocation unit is further configured to:
assigning attribute values to the events added to the event execution queue; the attribute values comprise a first attribute value and a second attribute value; the first attribute value is used for indicating that other events after the event in the event execution queue are blocked from being processed when the event is processed; the second attribute value is used for indicating that other events after the event in the event execution queue are not blocked from being processed when the event is processed, so that the processing of the subsequent event is controlled through the attribute value, and the execution of each event in the event execution queue is controlled.
7. The event processing apparatus according to claim 6, wherein the determining unit is further configured to:
judging whether an event is unprocessed before the event to be processed in the event execution queue;
the processing unit is further configured to process the event to be processed and generate a processing result when the determining unit determines that no event is processed before the event to be processed is determined.
8. The event processing apparatus according to claim 7, wherein the determining unit is further configured to:
if the judging unit judges that an event is not processed before the event to be processed, judging that the attribute value of the unprocessed event is a first attribute value or a second attribute value;
the processing unit is configured to, if the judging unit judges that the attribute value of the unprocessed event is the first attribute value, not process the event to be processed;
the processing unit is configured to process the event to be processed if the determining unit determines that the attribute value of the unprocessed event is the second attribute value.
9. The event processing apparatus according to any one of claims 6 to 8, wherein the preset condition is an event processing error;
the processing unit is further configured to:
and when the processing result is an event processing error and the preset condition does not comprise the event identity, processing the event execution queue according to a preset error processing strategy.
10. The event processing apparatus according to claim 9, wherein the processing unit is configured to:
and generating event processing error information and displaying the event processing error information.
CN201310476265.4A 2013-10-12 2013-10-12 Event processing method and device Active CN104572036B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201310476265.4A CN104572036B (en) 2013-10-12 2013-10-12 Event processing method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201310476265.4A CN104572036B (en) 2013-10-12 2013-10-12 Event processing method and device

Publications (2)

Publication Number Publication Date
CN104572036A CN104572036A (en) 2015-04-29
CN104572036B true CN104572036B (en) 2020-08-11

Family

ID=53088212

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201310476265.4A Active CN104572036B (en) 2013-10-12 2013-10-12 Event processing method and device

Country Status (1)

Country Link
CN (1) CN104572036B (en)

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105068912B (en) * 2015-07-29 2020-05-01 北京京东尚科信息技术有限公司 Method and device for executing webpage task
CN112288990A (en) * 2019-07-24 2021-01-29 上海东方富联科技有限公司 Method, system, medium and device for generating internet of things event based on internet of things data

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1874538A (en) * 2005-07-20 2006-12-06 华为技术有限公司 Concurrent method for treating calling events
CN102176122A (en) * 2011-03-07 2011-09-07 华中科技大学 Automatic control system based on finite automaton and control method thereof
CN103019826A (en) * 2012-12-27 2013-04-03 亚信联创科技(中国)有限公司 Method and device for processing events
CN103092682A (en) * 2011-10-28 2013-05-08 浙江大华技术股份有限公司 Asynchronous network application program processing method
CN103246548A (en) * 2012-02-02 2013-08-14 迈普通信技术股份有限公司 Method and device for scheduling fault-tolerant order-preserving events

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8255912B2 (en) * 2005-04-13 2012-08-28 Qualcomm Incorporated Techniques for setting events in a multi-threaded system

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1874538A (en) * 2005-07-20 2006-12-06 华为技术有限公司 Concurrent method for treating calling events
CN102176122A (en) * 2011-03-07 2011-09-07 华中科技大学 Automatic control system based on finite automaton and control method thereof
CN103092682A (en) * 2011-10-28 2013-05-08 浙江大华技术股份有限公司 Asynchronous network application program processing method
CN103246548A (en) * 2012-02-02 2013-08-14 迈普通信技术股份有限公司 Method and device for scheduling fault-tolerant order-preserving events
CN103019826A (en) * 2012-12-27 2013-04-03 亚信联创科技(中国)有限公司 Method and device for processing events

Also Published As

Publication number Publication date
CN104572036A (en) 2015-04-29

Similar Documents

Publication Publication Date Title
CN108681565B (en) Block chain data parallel processing method, device, equipment and storage medium
CN109614238B (en) Target object identification method, device and system and readable storage medium
WO2019075842A1 (en) Task allocation method and apparatus, storage medium and computer device
CN107729137B (en) Server, block chain signature verification decryption method and storage medium
CN106201723A (en) The resource regulating method of a kind of data center and device
US10289472B2 (en) Resource leak detection method, apparatus, and system
WO2017032265A1 (en) Application push method and apparatus, and a serving device
CN111459754B (en) Abnormal task processing method, device, medium and electronic equipment
WO2019205370A1 (en) Electronic device, task distribution method and storage medium
CN104793982A (en) Method and device for establishing virtual machine
JP2019016402A (en) Method, apparatus and computer device for scanning information to be scanned
CN111782383A (en) Task allocation method, server, electronic terminal and computer readable storage medium
CN104702534B (en) A kind of method and device for the data processing for realizing multi-process shared port
CN104572036B (en) Event processing method and device
CN103150159A (en) Identifier generation using named objects
WO2019062066A1 (en) On-line task execution method for terminal device, server, and readable storage medium
CN108776633B (en) Method for monitoring process operation, terminal equipment and computer readable storage medium
CN106855825B (en) Task processing method and device
CN104967603A (en) Application account security verification method and apparatus
CN111143063B (en) Task resource reservation method and device
CN113010897A (en) Cloud computing security management method and system
CN102521043B (en) A kind of task processing method and application system
CN115454576B (en) Virtual machine process management method and system and electronic equipment
CN108829534B (en) Data problem repairing method, device, computer equipment and storage medium
CN106855824B (en) Task stopping method and device and electronic equipment

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant