US8429655B2 - System and method for asynchronous processing in page lifecycle - Google Patents
System and method for asynchronous processing in page lifecycle Download PDFInfo
- Publication number
- US8429655B2 US8429655B2 US11/117,886 US11788605A US8429655B2 US 8429655 B2 US8429655 B2 US 8429655B2 US 11788605 A US11788605 A US 11788605A US 8429655 B2 US8429655 B2 US 8429655B2
- Authority
- US
- United States
- Prior art keywords
- asynchronous
- thread
- web
- page
- web server
- 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, expires
Links
- 238000012545 processing Methods 0.000 title claims abstract description 76
- 238000000034 method Methods 0.000 title claims abstract description 53
- 230000004044 response Effects 0.000 claims abstract description 33
- 230000001360 synchronised effect Effects 0.000 claims abstract description 18
- 238000003860 storage Methods 0.000 claims description 19
- 238000004891 communication Methods 0.000 claims description 13
- 230000000977 initiatory effect Effects 0.000 abstract description 3
- 238000009877 rendering Methods 0.000 abstract description 3
- 238000010586 diagram Methods 0.000 description 14
- 238000004590 computer program Methods 0.000 description 5
- 238000011161 development Methods 0.000 description 4
- 238000005516 engineering process Methods 0.000 description 2
- 230000010354 integration Effects 0.000 description 2
- 238000004519 manufacturing process Methods 0.000 description 2
- 230000007246 mechanism Effects 0.000 description 2
- 230000003287 optical effect Effects 0.000 description 2
- 238000013500 data storage Methods 0.000 description 1
- 230000001419 dependent effect Effects 0.000 description 1
- 239000012634 fragment Substances 0.000 description 1
- 238000005457 optimization Methods 0.000 description 1
- 230000000644 propagated effect Effects 0.000 description 1
- 230000003068 static effect Effects 0.000 description 1
- 238000012546 transfer Methods 0.000 description 1
- 230000007723 transport mechanism Effects 0.000 description 1
- 230000001960 triggered effect Effects 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements 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/46—Multiprogramming arrangements
- G06F9/54—Interprogram communication
- G06F9/542—Event management; Broadcasting; Multicasting; Notifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/90—Details of database functions independent of the retrieved data types
- G06F16/95—Retrieval from the web
- G06F16/957—Browsing optimisation, e.g. caching or content distillation
- G06F16/9574—Browsing optimisation, e.g. caching or content distillation of access to content, e.g. by caching
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements 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/46—Multiprogramming arrangements
- G06F9/50—Allocation of resources, e.g. of the central processing unit [CPU]
- G06F9/5005—Allocation of resources, e.g. of the central processing unit [CPU] to service a request
- G06F9/5027—Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2209/00—Indexing scheme relating to G06F9/00
- G06F2209/50—Indexing scheme relating to G06F9/50
- G06F2209/5018—Thread allocation
Definitions
- HyperText Transfer Protocol (HTTP) handlers take requests from a web page and process them in a predetermined fashion. There are a limited number of threads available to provide communication between a requesting client application and a web server. Synchronous HTTP handlers take a thread and keep it reserved for each request throughout the processing of that request. Once the request is completed by providing a result to the requesting application or a timeout, the reserved thread is returned to the available threads pool. Asynchronous HTTP handlers do not reserve the thread for the duration of the request and are, therefore, capable of serving many client requests with very few actual threads.
- Asynchronous processing refers to the ability to perform some part of request on a separate thread or to temporarily defer it and to release the request processing thread to process another request.
- this mechanism enables the maximization of the number of concurrent requests being processed by the system and enhancement of the perceived throughput of a server.
- a handler-code uses asynchronous methods in its implementation, it is possible to peg the CPU(s) in a system using only a handful of threads while serving many times as many clients. Coding asynchronous processes is generally a complex and programming-intensive effort.
- aspects of the present invention relate to use of asynchronous processing within a page lifecycle, enabling page developers to integrate asynchronous work within the page implementation that can store state inside the page and is applied to requests to the particular page.
- the asynchronous handler implementation by a server application supports development of custom asynchronous request handlers, and integration of asynchronous processing in a standard page handler.
- Asynchronous operations may include a number of web related operations including, but not limited to, web services, database commands, and the like. Reference to any of these specific examples throughout the document is not intended to be in a limiting sense. Aspects described herein may be implemented with any asynchronous operation.
- the ability to perform asynchronous processing directly within a page lifecycle implementation may significantly simplify the development model for asynchronous operations in page-related scenarios reducing the time to develop and stabilize the code.
- a computer-implemented method for providing asynchronous processing in a page lifecycle includes determining a request for an asynchronous operation from a web page being loaded and calling the asynchronous operation.
- Calling the asynchronous operation includes employing a thread from a pool of available threads and returning the thread to the pool after the call is initiated.
- the method further includes providing the result to the requesting web page, if a result is received in response to the called asynchronous operation.
- one or more computer-readable media include computer instructions for processing asynchronous tasks associated with a page.
- the instructions include registering at least one asynchronous task associated with the page while loading the page, with each asynchronous task associated with a begin handler, an end handler, and a timeout handler.
- the instructions further include calling a web service indicated by the begin handler associated with the asynchronous operation, if the asynchronous operation is registered in the web page.
- the instructions also include retrieving a result in response to the called web service indicated by the end handler associated with the asynchronous task and providing the result to the requesting web page.
- the instructions include providing a timeout error to the requesting web page for the called web service indicated by the timeout handler associated with the asynchronous task, if a timeout occurs.
- aspects of the invention may be implemented as a computer process, a computing system (including but not limited to mobile computing devices) or as an article of manufacture such as a computer program product.
- the computer program product may be a computer storage medium readable by a computer system and encoding a computer program of instructions for executing a computer process.
- the computer program product may also be a propagated signal on a carrier readable by a computing system and encoding a computer program of instructions for executing a computer process.
- FIG. 1 illustrates a computing device that may be used according to an example embodiment.
- FIG. 2 illustrates an example system of client and resource devices managed by a web server over a network, where one example embodiment may be implemented.
- FIG. 3 is a conceptual diagram illustrating actions associated with example web services in synchronous processing.
- FIG. 4 is a conceptual diagram illustrating actions associated with example web services in asynchronous processing.
- FIG. 5 is a diagram illustrating timing and actions associated with asynchronous processes according to one embodiment using a framework asynchronous pattern.
- FIG. 6 is a diagram illustrating timing and actions associated with asynchronous processes according to another embodiment using an event-based asynchronous pattern.
- FIG. 7 is a diagram illustrating timing and actions associated with asynchronous processes according to a further embodiment using asynchronous page tasks.
- FIG. 8 is a logic flow diagram illustrating an operational flow for providing asynchronous processing of a web document according to one example embodiment.
- FIG. 9 is a logic flow diagram illustrating an operational flow for providing asynchronous processing of a synchronous web document according to another example embodiment.
- an example system for implementing the invention includes a computing device, such as computing device 100 .
- computing device 100 typically includes at least one processing unit 102 and system memory 104 .
- system memory 104 may be volatile (such as RAM), non-volatile (such as ROM, flash memory, and the like) or some combination of the two.
- System memory 104 typically includes an operating system 105 , one or more applications 106 , and may include program data 107 . This basic configuration is illustrated in FIG. 1 by those components within dashed line 108 .
- Computing device 100 may also have additional features or functionality.
- computing device 100 may also include additional data storage devices (removable and/or non-removable) such as, for example, magnetic disks, optical disks, or tape.
- additional storage is illustrated in FIG. 1 by removable storage 109 and non-removable storage 110 .
- Computer storage media may include volatile and non-volatile, removable and non-removable media implemented in any method or technology for storage of information, such as computer readable instructions, data structures, program modules or other data.
- System memory 104 , removable storage 109 and non-removable storage 110 are all examples of computer storage media.
- Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can be accessed by computing device 100 . Any such computer storage media may be part of device 100 .
- Computing device 100 may also have input device(s) 112 such as keyboard, mouse, pen, voice input device, touch input device, etc.
- Output device(s) 114 such as a display, speakers, printer, etc. may also be included. All these devices are known in the art and need not be discussed at length here.
- Computing device 100 also contains communications connection(s) 116 that allow the device to communicate with other computing devices 118 , such as over a network or a wireless mesh network.
- Communications connection(s) 116 is an example of communication media.
- Communication media typically embodies computer readable instructions, data structures, program modules or other data in a modulated data signal such as a carrier wave or other transport mechanism and includes any information delivery media.
- modulated data signal means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal.
- communication media includes wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared and other wireless media.
- the term computer readable media as used herein includes both storage media and communication media.
- applications 106 further include server application 120 , which provides web services to computer device 100 and other computing devices over a network.
- Server application 120 may include routing applications, load balancing applications, security applications, and the like. Server application 120 may be configured to process requests from other devices, to retrieve results for the requests and provide the results to requesting devices, or a combination of the two functionalities.
- server application 120 may include page framework 122 . Page framework 122 may render one or more web-related handling services client applications.
- the functionality represented by server application 120 may be further supported by additional input devices, 112 , output devices 114 , and communication connection(s) 116 that are included in computing device 100 for providing asynchronous processing over the network.
- the logical operations of the various embodiments of the present invention are implemented (1) as a sequence of computer implemented steps running on a computing system and/or (2) as interconnected machine modules within the computing system.
- the implementation is a matter of choice dependent on the performance requirements of the computing system implementing the invention. Accordingly, the logical operations making up the embodiments of the present invention described herein are referred to alternatively as operations, steps or modules.
- aspects of the present invention provide mechanisms to use asynchronous processing within a page lifecycle, enabling page developers to integrate asynchronous work within the page implementation that can store state inside the page and is applied to requests to the particular page.
- the asynchronous handler implementation by the server application supports development of custom asynchronous request handlers, and integration of asynchronous processing in a standard page handler.
- the ability to perform asynchronous processing directly within a page lifecycle implementation may significantly simplify the development model for asynchronous operations in page-related scenarios reducing the time to develop and stabilize the code.
- the asynchronous framework provides proper synchronization of developer callbacks resulting from use of components supporting the new asynchronous component model. These events are delivered in a serial manner so that the page developer may use request instance data without explicit synchronization. This makes a high-scale, asynchronous processing model less complex and more accessible to developers accustomed to web scripting, which is traditionally synchronous.
- a further aspect of asynchronous tasks is that they enable writing of web page code that can perform several asynchronous operations during a single request.
- a further aspect includes the ability to automatically coordinate between several asynchronous tasks. For example, page execution only resumes after the last outstanding asynchronous task completes.
- Processing requests may include retrieval of data from databases, access to other resources, network communication, and the like. Entities sending the requests and receiving the results may include mobile and stationary devices such as desktop PC's, laptop PC's, PDA's, or applications such web browsers.
- FIG. 2 illustrates example system 200 of client and resource devices managed by a web server over a network, where one example embodiment of providing asynchronous processing in page lifecycle may be implemented.
- System 200 may comprise any topology of servers, clients, Internet service providers, and communication media. Also, system 200 may have a static or dynamic topology without departing from the spirit and scope of the present invention.
- System 200 includes at least one web server 202 , which provides services to other nodes of network 204 that may include client devices 221 - 225 directly connected to network 204 such as tablet PC 221 , smart phone 222 , PDA 223 , laptop PC 224 , and client device/application 225 .
- nodes of network 204 may further include client devices (not shown), which are connected to network 204 through a subnet managed by another server (not shown).
- Services provided by web server 202 may include an application that handles request for resources for client devices 221 - 225 .
- Resources may include applications on other servers (or clients) such as server 211 , database 212 , and other applications on computing devices (not shown), where information is transferred to a recipient.
- Network 204 may be a secure network such an enterprise network, or an unsecure network such as a wireless open network.
- Network 204 provides communication between the nodes described above.
- network 204 may include wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared and other wireless media.
- a web service provider application on web server 202 may receive requests from a web browser application on client device 221 and process the requests asynchronously minimizing a number of threads reserved for the web browser. Each thread may be returned to a pool of available threads once the action associated with the request is initiated. A result for the request or a timeout error may be provided to the web browser on a separate thread.
- FIG. 3 illustrates conceptual diagram 300 comprising actions associated with example web services in synchronous processing. The actions may be performed by a web server application residing in a web server such as web server 202 of FIG. 2 .
- a page may issue a request for a web service # 1 ( 302 ).
- the web server application may begin processing the page and call web service # 1 , when it encounters the request.
- a thread is taken from a pool of available threads.
- the thread executing the page remains blocked while it waits for the response from the web service dedicated to the page.
- the web server then waits for a response to the request.
- the web server continues processing the page.
- the web server may issue another request for a web service, for example, web service # 2 ( 304 ). Similar to the processing of web service # 1 , the request is processed, the web server waits until a response is received or a timeout error occurs. Then, the web server completes actions associated with web service # 2 ( 304 ).
- the described process may be repeated for any number of web service requests in the page.
- the web server Upon completion of the last web service, the web server returns the thread to the pool of available threads after it finishes processing the page.
- FIG. 4 is conceptual diagram 400 illustrating actions associated with example web services in asynchronous processing. The actions may be performed by a web server application residing in a web server such as web server 202 of FIG. 2 .
- a page may issue a request for a web service # 1 ( 402 ).
- the web server application may begin processing the page and call web service # 1 .
- the thread is returned to the pool.
- the result for the first request is received (e.g. the data for the other server retrieved)
- another thread is taken from the pool. Processing continues and the actions are repeated, if another web service such as web service # 2 ( 404 ) is encountered.
- web service # 2 ( 404 ) is the last web service in the page, its completion is accompanied by finishing of the processing of the page and returning of the last thread.
- the web server makes efficient use of the system resources.
- the page framework enables page controls to work asynchronously while ensuring that all results are delivered in order. This allows a page developer to program the page without having to worry about thread-safety of the code.
- FIG. 5 includes diagram 500 illustrating timing and actions associated with asynchronous processes according to one embodiment using a framework asynchronous pattern.
- Actions associated with processing a page may be categorized in following main groups:
- the asynchronous processes are initiated at prerendering and completed before rendering of the page.
- the asynchronous actions may include two main categories: call to start and call to get the result.
- Example page code 508 includes code for calling the asynchronous process. This line triggers registration of the asynchronous event during page load ( 502 ). The code may include other commands following the calling line.
- the next action associated with the asynchronous operation is triggered by code for beginning the event handler.
- the code may include various parameters related to the event handler.
- Action 504 launches the asynchronous operation such as calling a web service.
- the asynchronous operation may end with either retrieval of the result of the called web service or by a network error (e.g. network timeout).
- a network error e.g. network timeout
- Another code fragment in example page code 508 enables completion of the web service with either retrieval of the result or an error ( 506 ).
- the result may be provided through a different thread than the one used for submitting the request. The thread is not kept out of the pool of available threads throughout the process allowing efficient use of the system resources.
- FIG. 6 includes diagram 600 illustrating timing and actions associated with asynchronous processes according to another embodiment using an event-based asynchronous pattern.
- Example page code 606 includes a line for subscribing to completion event and calling the asynchronous process. This line triggers registration of the asynchronous event before page load ( 602 ). The code may include other commands following the calling line.
- Another line in example page code 606 enables completion of the web service with either retrieval of the result or by a network error ( 604 ).
- the result may be provided through a different thread than the one used for submitting the request. The thread is not kept out of the pool of available threads throughout the process allowing efficient use of the system resources.
- FIG. 7 includes diagram 700 illustrating timing and actions associated with asynchronous processes according to a further embodiment using asynchronous page tasks. They are designed to enable multiple asynchronous calls, thus facilitating handling of several asynchronous request results without having to write relatively complex, orchestrating code. Asynchronous page tasks further enable use of individual timeouts for each task. Moreover, employing asynchronous tasks, mainly synchronous pages may be processed within the asynchronous framework as well. The latter method allows more efficient use of system resources and optimization of page-rendering time while maintaining the page's mainly synchronous nature.
- the asynchronous tasks include the additional main category: call if a timeout occurs.
- Example page code 710 includes code for subscribing the asynchronous tasks associated with the page. This line triggers registration of the asynchronous tasks during page load ( 702 ). The registration specifies begin-, end-, and timeout-handlers for each task. The code may include other commands following the registration line.
- a code line that starts the asynchronous operation (e.g. BeginTaskHandler). Similar to the asynchronous operations explained previously, a thread is taken from the pool before page starts processing. When all tasks have been started, then the thread is returned to the pool.
- Another line in example page code 710 enables completion of the web service associated with the asynchronous task with retrieval of the result ( 706 ).
- the result may be provided through a different thread than the one used for submitting the request. The thread is not kept out of the pool of available threads throughout the process allowing efficient use of the system resources.
- a further line in example page code 710 enables completion of the web service associated with the asynchronous task based on a timeout error ( 708 ).
- a timeout error 708
- an asynchronous process timeout may be specified either by the page developer or by the server application. If a result is not retrieved within the specified time period, the requesting page is provided with the timeout error and the requested execution continues.
- the server may be configured such that a result arriving after the timeout period is not forwarded to the page anymore and its integrity protected, because the page is assumed to have moved on to other processes.
- FIG. 8 is a logic flow diagram illustrating operational flow 800 for providing asynchronous processing of a web document according to one example embodiment.
- Process 800 may be implemented in a server application such as server application 120 of FIG. 1 .
- Process 800 starts at block 802 where a page is loaded to be processed. A thread is taken from a pool of available threads during the loading of the page. The page may issue a request for a web service. Processing proceeds to block 804 next.
- the server application initiates a call for the web service.
- the thread is returned to the pool and not blocked until a response is received for the web service. Processing then moves to decision block 806 .
- Processing then advances to block 810 , where the web server waits for a response.
- the wait for a response may be followed by one of two paths.
- the first path begins with receiving a result in response to the completed web service at block 812 .
- processing moves to block 814 , where the result is provided to the requesting page.
- the second path begins with the web server receiving a network error at block 816 .
- the network error may include a network timeout, a communication error, and the like. Processing advances to block 818 next.
- the network error is provided to the requesting page.
- processing moves to decision block 820 .
- decision block 820 a determination is made whether all requests are completed. If there are remaining responses, processing moves to block 822 , where the thread that is employed for receiving the response is returned to the thread pool. After block 822 , processing returns to block 810 to wait for further responses.
- processing moves to block 824 , where the page is rendered. Processing then moves to a calling process for further actions.
- FIG. 9 is a logic flow diagram illustrating operational flow 900 for providing asynchronous processing of a mainly synchronous web document according to another example embodiment.
- Process 900 may be implemented in a server application such as server application 120 of FIG. 1 .
- a mainly synchronous web document includes mostly synchronous tasks, but may also include some asynchronous tasks. In another embodiment, some of the synchronous tasks may be performed as asynchronous tasks by the server application managing the web document.
- Process 900 starts at block 902 where a main thread is taken and kept for the synchronous web document to be processed. Processing proceeds to block 904 next.
- the web document is loaded and page processing begins.
- handlers for asynchronous tasks associated with the document may also be registered by the server application. Such handlers may include begin-, end-, and timeout-handlers.
- Page processing may include a request for a web service. Processing moves from block 904 to block 906 .
- the server application initiates the call for the first web service.
- the server application may take a thread from a pool of available threads.
- the thread is returned to the pool and not blocked until a response is received for the first web service. Processing then moves to decision block 908 .
- the server application provides the response to the requesting document.
- the response may be provided using a different thread than the one used for initiating the web service.
- the thread employed for providing the response is returned to the thread pool upon completion of the web service. From block 912 , processing proceeds to decision block 918 .
- a timeout error is provided to the requesting client. Similar to the received response, a different thread may be employed and returned to the thread pool for this action.
- processing advances to decision block 918 .
- decision block 918 a determination is made whether all requests have been processed. If all requests have not yet been processed, processing returns to block 910 , else processing advances to block 920 .
- Processes 800 and 900 are example embodiments for illustration purposes. The invention is not limited to the flowchart blocks or the order of blocks of processes 800 and 900 . Other embodiments of the present invention may be implemented in another process with fewer or additional blocks and in other orders without departing from the scope and spirit of the invention.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Software Systems (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Databases & Information Systems (AREA)
- Multimedia (AREA)
- Data Mining & Analysis (AREA)
- Information Transfer Between Computers (AREA)
Abstract
Description
Claims (20)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/117,886 US8429655B2 (en) | 2005-04-29 | 2005-04-29 | System and method for asynchronous processing in page lifecycle |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/117,886 US8429655B2 (en) | 2005-04-29 | 2005-04-29 | System and method for asynchronous processing in page lifecycle |
Publications (2)
Publication Number | Publication Date |
---|---|
US20060248207A1 US20060248207A1 (en) | 2006-11-02 |
US8429655B2 true US8429655B2 (en) | 2013-04-23 |
Family
ID=37235745
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US11/117,886 Active 2029-12-30 US8429655B2 (en) | 2005-04-29 | 2005-04-29 | System and method for asynchronous processing in page lifecycle |
Country Status (1)
Country | Link |
---|---|
US (1) | US8429655B2 (en) |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US11035929B2 (en) | 2014-12-19 | 2021-06-15 | Xidrone Systems, Inc. | Deterrent for unmanned aerial systems |
US11156707B2 (en) | 2014-12-19 | 2021-10-26 | Xidrone Systems, Inc. | Systems and methods for detecting, tracking and identifying small unmanned systems such as drones |
Families Citing this family (21)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8019720B2 (en) * | 2006-10-02 | 2011-09-13 | Salesforce.Com, Inc. | Asynchronous method and system for performing an operation on metadata |
US8572057B2 (en) * | 2006-10-02 | 2013-10-29 | Salesforce.Com, Inc. | Method and system for applying a group of instructions to metadata |
JP2009093526A (en) * | 2007-10-11 | 2009-04-30 | Sysmex Corp | Interprocess communication system, data structure, interprocess communication controller, interprocess communication control method and computer program |
US8140963B2 (en) * | 2007-12-19 | 2012-03-20 | Yahoo! Inc. | Tag aggregator |
US8386260B2 (en) * | 2007-12-31 | 2013-02-26 | Motorola Mobility Llc | Methods and apparatus for implementing distributed multi-modal applications |
US8370160B2 (en) * | 2007-12-31 | 2013-02-05 | Motorola Mobility Llc | Methods and apparatus for implementing distributed multi-modal applications |
US8849753B2 (en) * | 2008-05-20 | 2014-09-30 | Microsoft Corporation | Automating asynchronous programming in single threaded systems |
US8713571B2 (en) * | 2010-02-17 | 2014-04-29 | Microsoft Corporation | Asynchronous task execution |
EP2595058A4 (en) * | 2010-07-13 | 2014-03-12 | Fujitsu Ltd | DEVICE, SYSTEM, PROGRAM, AND METHOD FOR PROCESSING MULTIPLE PATHS |
US8726081B2 (en) | 2011-06-14 | 2014-05-13 | International Business Machines Corporation | Event based model for managing application health and failure recovery for asynchronous processing systems |
US20140053157A1 (en) * | 2012-08-16 | 2014-02-20 | Microsoft Corporation | Asynchronous execution flow |
US10885023B1 (en) * | 2014-09-08 | 2021-01-05 | Amazon Technologies, Inc. | Asynchronous processing for synchronous requests in a database |
CN106484548A (en) * | 2016-10-20 | 2017-03-08 | 济南浪潮高新科技投资发展有限公司 | A kind of choreography request response processing method based on asynchronism callback mechanism |
CN106911784B (en) * | 2017-03-02 | 2020-12-18 | 北京奇鱼时代科技有限公司 | Method and device for executing asynchronous event |
US11089079B2 (en) * | 2017-11-22 | 2021-08-10 | International Business Machines Corporation | Asynchronously reading HTTP responses in separate process |
US10771564B2 (en) | 2017-11-22 | 2020-09-08 | International Business Machines Corporation | Sharing system managed HTTP client sessions across processes |
KR102051302B1 (en) * | 2018-06-22 | 2019-12-03 | 주식회사 티맥스 소프트 | Method for processing service |
CN112788115A (en) * | 2020-12-30 | 2021-05-11 | 银盛支付服务股份有限公司 | Asynchronous processing-based file transmission method and system |
CN113760400B (en) * | 2021-01-13 | 2025-01-07 | 北京沃东天骏信息技术有限公司 | A request processing method and device |
CN113282295B (en) * | 2021-05-25 | 2024-02-23 | 青岛海尔科技有限公司 | Blocking processing method and device, storage medium and electronic device |
CN117632397A (en) * | 2022-08-16 | 2024-03-01 | 华为技术有限公司 | Method and device for scheduling life cycle and electronic equipment |
Citations (14)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6012081A (en) | 1996-07-03 | 2000-01-04 | Siemens Aktiengesellschaft | Service and event synchronous/asynchronous manager |
US6226689B1 (en) * | 1997-01-29 | 2001-05-01 | Microsoft Corporation | Method and mechanism for interprocess communication using client and server listening threads |
US20020184363A1 (en) * | 2001-04-20 | 2002-12-05 | Steven Viavant | Techniques for server-controlled measurement of client-side performance |
US6728960B1 (en) * | 1998-11-18 | 2004-04-27 | Siebel Systems, Inc. | Techniques for managing multiple threads in a browser environment |
US20040143645A1 (en) * | 2003-01-21 | 2004-07-22 | Manoj Cheenath | Asynchronous web service invocation model |
US20050086359A1 (en) * | 2003-10-16 | 2005-04-21 | International Business Machines Corporation | Monitoring thread usage to dynamically control a thread pool |
US20050149934A1 (en) * | 1999-11-18 | 2005-07-07 | International Business Machines Corporation | Method, system and program products for managing thread pools of a computing environment to avoid deadlock situations |
US20060136921A1 (en) * | 2004-11-24 | 2006-06-22 | Detlef Becker | Architecture for a computer-based development environment with self-contained components and a threading model |
US7162723B2 (en) | 2001-06-29 | 2007-01-09 | Microsoft Corporation | ASP.NET HTTP runtime |
US7248603B1 (en) * | 2001-06-28 | 2007-07-24 | Microsoft Corporation | Asynchronous pattern |
US7516195B2 (en) * | 2003-04-29 | 2009-04-07 | International Business Machines Corporation | Method of handling a web service call |
US7788675B2 (en) * | 2001-10-05 | 2010-08-31 | Bea Systems Inc. | System for integrating java servlets with asynchronous message |
US7788674B1 (en) * | 2004-02-19 | 2010-08-31 | Michael Siegenfeld | Computer software framework for developing secure, scalable, and distributed applications and methods and applications thereof |
US7937703B2 (en) * | 2005-09-27 | 2011-05-03 | International Business Machines Corporation | Stateless server-side automation of web service requests using dynamically generated web service interfaces |
Family Cites Families (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6061339A (en) * | 1997-12-10 | 2000-05-09 | L-3 Communications Corporation | Fixed wireless loop system having adaptive system capacity based on estimated signal to noise ratio |
US6433736B1 (en) * | 2000-11-22 | 2002-08-13 | L-3 Communications Corp. | Method and apparatus for an improved antenna tracking system mounted on an unstable platform |
-
2005
- 2005-04-29 US US11/117,886 patent/US8429655B2/en active Active
Patent Citations (15)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6012081A (en) | 1996-07-03 | 2000-01-04 | Siemens Aktiengesellschaft | Service and event synchronous/asynchronous manager |
US6226689B1 (en) * | 1997-01-29 | 2001-05-01 | Microsoft Corporation | Method and mechanism for interprocess communication using client and server listening threads |
US6728960B1 (en) * | 1998-11-18 | 2004-04-27 | Siebel Systems, Inc. | Techniques for managing multiple threads in a browser environment |
US20050149934A1 (en) * | 1999-11-18 | 2005-07-07 | International Business Machines Corporation | Method, system and program products for managing thread pools of a computing environment to avoid deadlock situations |
US20020184363A1 (en) * | 2001-04-20 | 2002-12-05 | Steven Viavant | Techniques for server-controlled measurement of client-side performance |
US7248603B1 (en) * | 2001-06-28 | 2007-07-24 | Microsoft Corporation | Asynchronous pattern |
US7162723B2 (en) | 2001-06-29 | 2007-01-09 | Microsoft Corporation | ASP.NET HTTP runtime |
US7788675B2 (en) * | 2001-10-05 | 2010-08-31 | Bea Systems Inc. | System for integrating java servlets with asynchronous message |
US20040143645A1 (en) * | 2003-01-21 | 2004-07-22 | Manoj Cheenath | Asynchronous web service invocation model |
US7580975B2 (en) | 2003-01-21 | 2009-08-25 | Bea Systems, Inc. | Asynchronous web service invocation model |
US7516195B2 (en) * | 2003-04-29 | 2009-04-07 | International Business Machines Corporation | Method of handling a web service call |
US20050086359A1 (en) * | 2003-10-16 | 2005-04-21 | International Business Machines Corporation | Monitoring thread usage to dynamically control a thread pool |
US7788674B1 (en) * | 2004-02-19 | 2010-08-31 | Michael Siegenfeld | Computer software framework for developing secure, scalable, and distributed applications and methods and applications thereof |
US20060136921A1 (en) * | 2004-11-24 | 2006-06-22 | Detlef Becker | Architecture for a computer-based development environment with self-contained components and a threading model |
US7937703B2 (en) * | 2005-09-27 | 2011-05-03 | International Business Machines Corporation | Stateless server-side automation of web service requests using dynamically generated web service interfaces |
Non-Patent Citations (8)
Title |
---|
Bogardi-Meszoly, A., et al.; "Investigating Factors Influencing the Response Time in asp.net Web Applications"; PCI 2005, LNCS 3746, Springer-Verlag Berlin Heidelberg 2005; accessed Oct. 14, 2009 at http://www.springerlink.com/content/k0g166wg8261x616/fulltext.pdf; 11 pgs. |
Chang et al. "Web Browsing in a Wireless Environment: Disconnected and Asynchronous Operations in ARTour Web Express" (MOBICOM '97). * |
Chang, H., et al.; "Web Browsing in a Wireless Environment: Disconnected and Asynchronous Operation in ARTour Web Express"; Dec. 1998; AMMobiCom '97; 10 pgs. |
Hu et al. "Measuring the Impact of Event dispatching and Concurrency Models on Web Server Performance Over High-speed Networks", Proceedings of the 2nd Global Internet mini-conference held in conjunction with GLOBECOM, Nov. 1997, pp. 1-12. * |
MSDN; "Chapter 10-Improving Web Services Performance"; May 2004; accessed at http://msdn.microsoft.com/en-us/library/ms998562.aspx; 36 pgs. |
MSDN; "Handling Public Events"; 2009 Microsoft Corporation; accessed Oct. 15, 2009 at http://msdn.microsoft.com/en-us/library/9ysfzy8h.aspx; 5 pgs. |
Zdun et al. "Design and Implementation of an Asynchronous Invocation Framework for Web Services", ICWS-Europe 2003, pp. 64-78. * |
Zdun, U., et al.; "Design and Implementation of an Asynchronous Invocation Framework for Web Services"; Jun. 2004; Vienna University of Economics, Austria; Ingenieurbro fur Softwaretechnologie, Germany; Siemems AG, Germany; 15 pgs. |
Cited By (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US11035929B2 (en) | 2014-12-19 | 2021-06-15 | Xidrone Systems, Inc. | Deterrent for unmanned aerial systems |
US11156707B2 (en) | 2014-12-19 | 2021-10-26 | Xidrone Systems, Inc. | Systems and methods for detecting, tracking and identifying small unmanned systems such as drones |
US11378651B2 (en) | 2014-12-19 | 2022-07-05 | Xidrone Systems, Inc. | Deterrent for unmanned aerial systems |
US11644535B2 (en) | 2014-12-19 | 2023-05-09 | Xidrone Systems, Inc. | Deterrent for unmanned aerial systems |
US11965977B2 (en) | 2014-12-19 | 2024-04-23 | Xidrone Systems, Inc. | Deterrent for unmanned aerial systems |
US12092756B1 (en) | 2014-12-19 | 2024-09-17 | Xidrone Systems, Inc. | Deterrent for unmanned aerial systems |
Also Published As
Publication number | Publication date |
---|---|
US20060248207A1 (en) | 2006-11-02 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US8429655B2 (en) | System and method for asynchronous processing in page lifecycle | |
US20220043829A1 (en) | Methods for enhancing a legacy single tenant application system to a multi-tenant application system with minimal changes | |
CA3000422C (en) | Workflow service using state transfer | |
US8458727B2 (en) | Asynchronous client to server updates | |
EP2153344B1 (en) | Dynamically loading scripts | |
US10725829B2 (en) | Scheduling capacity in a data-processing cluster to an application queue by repurposing monitoring-based capacity of a delegator queue for job execution in the application queue | |
US20070226214A1 (en) | Optimized session management for fast session failover and load balancing | |
KR20180132874A (en) | Version-like hierarchical data structures in distributed data stores | |
US10592470B2 (en) | Discovery of calling application for control of file hydration behavior | |
US10803413B1 (en) | Workflow service with translator | |
US11023558B1 (en) | Executing functions on-demand on a server utilizing web browsers | |
US11240302B1 (en) | Live migration of log-based consistency mechanisms for data stores | |
CN117076096B (en) | Task flow execution method and device, computer readable medium and electronic equipment | |
US20180084075A1 (en) | Request cache to improve web applications performance | |
US9892202B2 (en) | Web page load time reduction by optimized authentication | |
US20130191492A1 (en) | Server-Side Minimal Download and Error Failover | |
US10963538B2 (en) | Client application for web application execution | |
CN111294377B (en) | Dependency network request sending method, terminal device and storage medium | |
CN110362305B (en) | Form component state switching method and device | |
US10452637B1 (en) | Migration of mutable data sets between data stores | |
US10642819B2 (en) | Automate telling data-rich stories within analytics dashboard | |
US10482098B2 (en) | Consuming streamed data records | |
Lyu et al. | Going Serverless with the Amazon AWS Rust SDK | |
US9195504B2 (en) | Transfer of data structures in sub-linear time for systems with transfer state awareness | |
US10432549B1 (en) | Method and system for scope-sensitive loading of software resources |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: MICROSOFT CORPORATION, WASHINGTON Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:OLSON, ERIK B.;SANABRIA, ANDRES;ROBSMAN, DMITRY;AND OTHERS;REEL/FRAME:023271/0195;SIGNING DATES FROM 20050427 TO 20050610 Owner name: MICROSOFT CORPORATION, WASHINGTON Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:OLSON, ERIK B.;SANABRIA, ANDRES;ROBSMAN, DMITRY;AND OTHERS;SIGNING DATES FROM 20050427 TO 20050610;REEL/FRAME:023271/0195 |
|
AS | Assignment |
Owner name: MICROSOFT CORPORATION, WASHINGTON Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:KOTHARI, NIKHIL;REEL/FRAME:023470/0841 Effective date: 20091027 |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
AS | Assignment |
Owner name: MICROSOFT TECHNOLOGY LICENSING, LLC, WASHINGTON Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MICROSOFT CORPORATION;REEL/FRAME:034543/0001 Effective date: 20141014 |
|
FPAY | Fee payment |
Year of fee payment: 4 |
|
MAFP | Maintenance fee payment |
Free format text: PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY Year of fee payment: 8 |
|
FEPP | Fee payment procedure |
Free format text: MAINTENANCE FEE REMINDER MAILED (ORIGINAL EVENT CODE: REM.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |