单词 | asynchronous call | ||||||||||
释义 | asynchronous call
更多释义 收起释义 例句释义: 异步调用,异步呼叫,非同步调用 1. Unfortunately the very nature of an asynchronous call means that delegates cannot be inlined. 不幸的是,异步调用的本质意味着不能内联委托(delegatescannotbeinlined)。 www.infoq.com 2. Furthermore, there is quite a bit of boilerplate code involved in setting up an asynchronous call. 此外,在建立异步调用时还包括不少样板代码。 www.infoq.com 3. The body of each method on this proxy script class will perform an asynchronous call to its corresponding Web service method. 该代理脚本类的每个方法的主体都将执行异步调用相应的Web服务方法。 msdn.microsoft.com 4. The point to make here is that the invocation of your service as described above is an asynchronous call. 这里要强调的是上面描述的对您的Web服务的调用是一个异步调用。 www.ibm.com 5. The application uses a number of callbacks to handle the state of each asynchronous call. 应用程序使用很多回调来处理每个异步调用的状态。 www.ibm.com 6. Pretty much any kind of external service is going to require an asynchronous call that returns on the UI thread. 几乎任何类型的外部服务都需要一个返回UI线程的异步调用。 www.infoq.com 7. Neither of these delegates has a return value, because there is no place to return the data from an asynchronous call. 这两个委托都没有返回值,因为没有地方用于从异步调用中返回数据。 msdn2.microsoft.com 8. As in the multiple-click scenario, an asynchronous call might process a bit more slowly. 就像在多重点击场景中一样,异步调用可能处理得慢些。 www.ibm.com 9. The asynchronous call to the server will be triggered when the validate method is called. 当验证方法被调用时,对服务器的异步调用将被触发。 www.ibm.com 10. Polling repeatedly checks the status of an asynchronous call from within a loop. 轮询通过循环重复地检查异步调用的状态。 msdn2.microsoft.com 1. Gets the delegate object on which the asynchronous call was invoked. 获取在其上调用异步调用的委托对象。 msdn2.microsoft.com 2. Asynchronous call back - Client issues a request and the target will call a service implemented by the client with the response. 异步回调——客户机发出请求,目标将调用使用响应调用客户机实现的服务。 www.ibm.com 3. The method returns an IAsyncResult, which can be used to monitor completion, wait on the WaitHandle, or complete the asynchronous call. 这个方法返回一个IAsyncResult,它可以被用在监测完成,也可以等待在WaitHandel,或者完成异步调用。 www.cnblogs.com 4. The result of the asynchronous call. 异步调用的结果。 msdn2.microsoft.com 5. The return value of an asynchronous call can be recovered by calling the EndInvoke method. 异步调用的返回值可以通过EndInvoke方法回收。 www.cnblogs.com 6. There's no easy way to return the result of an asynchronous call. 无法使用简单的方法返回异步调用的结果。 www.ibm.com 7. This relieves you of manually handling exceptions that occur during an asynchronous call. 这能让您不用再手工处理异步调用过程中发生的异常。 www.ibm.com 8. Manage asynchronous call completion on a callback method. 用回调方法控制非同步调用。 asp.dejiaocheng.com 9. When it receives focus, an asynchronous call is made to retrieve the values from the server. 在获得焦点时,则发出异步调用,从服务器检索值。 www.ibm.com 10. It makes an asynchronous call to the data that we exposed RESTfully in the previous step. 它对上一步中以REST形式显示的数据进行了异步调用。 www.ibm.com 1. Shows how to make an asynchronous call to a method of a remote object. 显示如何异步调用远程对象的方法。 msdn2.microsoft.com 2. We first act on the web page, then wait until the asynchronous call completes. 我们首先刷新web页面,然后就是等待,直到异步调用完成。 www.ibm.com 3. You can use this deferred object for defining a callback method when the asynchronous call returns a response. 我们可以使用这个deferred对象来定义一个在异步调用返回响应时执行的回调函数。 www.ibm.com 4. Demonstrates how to make an asynchronous call to a Web service from a client application. 演示如何从客户端应用程序异步调用Web服务。 msdn2.microsoft.com 5. An asynchronous call to the server is made to perform the server validation. 对服务器进行异步调用以执行服务器验证。 www.ibm.com 6. Gets the response message for the asynchronous call. 获取异步调用的响应消息。 msdn2.microsoft.com 7. The asynchronous call runs on a separate thread; however, the UI is slightly less responsive while the call is active. 异步调用运行在单独的线程上;而当调用处于活动状态时,UI较少作出响应。 msdn2.microsoft.com 8. Avoid making an asynchronous call for every keystroke or mouse move. 应避免对每次按键或鼠标移动都发出异步调用。 www.ibm.com 9. Initiates an asynchronous call to the HTTP event handler. 启动对HTTP事件处理程序的异步调用。 msdn2.microsoft.com 10. That represents the asynchronous call. 表示异步调用的。 msdn2.microsoft.com 1. Initiates an asynchronous call to the HTTP handler. 启动对HTTP处理程序的异步调用。 msdn2.microsoft.com 2. Assume that a client operation makes an asynchronous call to the Project Zero application. 假设某客户机操作向ProjectZero应用程序发起一个异步调用。 www.ibm.com 3. This is an asynchronous call, so once the message is given to WebSphere MQ, the call returns. 这是一个异步调用,因此,一旦将该消息给WebSphereMQ,该调用就会返回。 www.ibm.com 4. This exception is thrown when the client tries to get the response from an asynchronous call. 当客户端尝试从异步调用获得响应时,将会引发此异常。 www.ibm.com 5. The input values to the asynchronous call. 异步调用的输入值。 msdn2.microsoft.com 6. Using events - A signal is set as soon as the asynchronous call is finished. 利用事件-信号是尽快将异步调用完成。 blog.sina.com.cn 7. Listing 10 shows a code snippet that makes an asynchronous call to the web service defined in Listing 1. 清单10显示了异步调用清单1中定义的Web服务的代码片段。 www.ibm.com 8. The Implementation of the Asynchronous Call Extended Model 实现异步调用的扩展模型 www.ilib.cn 9. Notify the user if an error occurred during the asynchronous call 如果在异步调用过程中出现错误,则通知用户 www.ibm.com 10. How to: Make an Asynchronous Call from a Web Service Client 如何:从Web服务客户端上进行异步调用 msdn2.microsoft.com |
||||||||||
随便看 |
|
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。