I've got the following code (simplified) :
IEnumerable MyFunc(...){
IAsyncResult res = mSocket.BeginReceive(mReceptionArray, 0, pNbBytes, SocketFlags.None, null, null);
while (!res.IsCompleted){
yield return new WaitForFixedUpdate();
}
}
Which can be used like this :
foreach(object o in MyFunc());
Of course, the compiler complains because o is never used. Is there any way around that ?
EDIT
The foreach is executed in a coroutine. I need to block the execution of the coroutine until I receive data from a server. I could use a regular Receive(), but this would block all other coroutines, and I can't do that : there are lots of other coroutines running, and blocking this one with Receive or EndReceive would block them.
Anyway, this is not a busy-wait.
Any suggestion to refactor the code is more than welcome, I'm not very experienced with C#.
MyFuncto be namedSendBytesSynchronous? – JaredPar Oct 17 '11 at 16:13new WaitForFixedUpdatereturned orodefined? – Javad_Amiry Oct 17 '11 at 16:13