当前位置: 首页>>代码示例>>C#>>正文


C# Worker.WorkReceive方法代码示例

本文整理汇总了C#中Worker.WorkReceive方法的典型用法代码示例。如果您正苦于以下问题:C# Worker.WorkReceive方法的具体用法?C# Worker.WorkReceive怎么用?C# Worker.WorkReceive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Worker的用法示例。


在下文中一共展示了Worker.WorkReceive方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Receive

        /// <summary>
        /// Synchronously receives a message from the connector interface.
        /// </summary>
        /// <returns>An <see cref="IReceiveResult"/> object with the results of the receive operation. If an error occured, this value is null.</returns>
        public IReceiveResult Receive()
        {

            // Formatter check
            if (!IsOpen())
                throw new ConnectorException(ConnectorException.MSG_INVALID_STATE, ConnectorException.ReasonType.NotOpen);

            // Create the work that will perform the operations
            Worker w = new Worker();
            w.Formatter = (IXmlStructureFormatter)Formatter;

            // If there is no data in the waiting data queue, block
            while (waitingMessages.Count == 0)
                Thread.Sleep(100);

            KeyValuePair<Message, Guid> state;
            lock (waitingMessages) { state = waitingMessages.Dequeue(); }
            w.MessageId = state.Value;
            w.WorkReceive(state.Key);

            // Return the result
            return w.ReceiveResult;
        }
开发者ID:oneminot,项目名称:everest,代码行数:27,代码来源:WcfServerConnector.cs

示例2: Receive

        /// <summary>
        /// Receive the result from the connector.
        /// </summary>
        /// <param name="correlate">The send result. Used to correlate the response with the request.</param>
        /// <returns>The receive result.</returns>
        /// <remarks>Performs a blocking receive operation. If you use this method after a BeginSend()
        /// this method will block and wait for a response.</remarks>
        public IReceiveResult Receive(ISendResult correlate)
        {
            // Receive the result from the connector
            if (!IsOpen())
                throw new ConnectorException(ConnectorException.MSG_INVALID_STATE, ConnectorException.ReasonType.NotOpen);

            // wait for a message
            Message responseMessage = null;
            DateTime startTime = DateTime.Now;

            while (!results.TryGetValue(correlate, out responseMessage) && DateTime.Now.Subtract(startTime).CompareTo(wcfClient.Endpoint.Binding.ReceiveTimeout) == -1)
                //TODO: Should use a WaitHandle
                Thread.Sleep(100);

            if (responseMessage == null)
                throw new TimeoutException("Receive() operation did not complete in specified amount of time");

            // process the message 
            Worker w = new Worker();
            w.Formatter = (IXmlStructureFormatter)Formatter;
#if WINDOWS_PHONE
            w.Actions = this.m_actions;
#else
            w.WcfConfiguration = wcfConfiguration;
#endif
            w.WorkReceive(responseMessage);

            return w.ReceiveResult;
        }
开发者ID:oneminot,项目名称:everest,代码行数:36,代码来源:WcfClientConnector.cs


注:本文中的Worker.WorkReceive方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。