本文整理汇总了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;
}
示例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;
}