Thanks a lot Scott.<br><br>No 'recv_mark' or 'recv_set' operators appear, so I must look for a workaround... :-(<br><br>Cheers,<br>Álvaro<br><br><div class="gmail_quote">2013/1/24 Scott Lystig Fritchie <span dir="ltr"><<a href="mailto:fritchie@snookles.com" target="_blank">fritchie@snookles.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Álvaro <<a href="mailto:avalormaquedano@gmail.com">avalormaquedano@gmail.com</a>> wrote:<br>
<br>
am> This function will be called periodically and I need to know if this<br>
am> implementation will always go through all the message in the mailbox<br>
am> (i.e. it will try to match Pattern1 to the messages at the beginning<br>
am> of the mailbox over and over again).<br>
<br>
Álvaro, compile your module using "erlc -S", then look at the BEAM<br>
assembly for your function ... if the operators 'recv_mark' and<br>
'recv_set' appear (where the argument for recv_set is the same as the<br>
argument for recv_mark), then the function will not scan all messages in<br>
the mailbox.  If you do not see them, then a full mailbox scan will be<br>
done.<br>
<span class="HOEnZb"><font color="#888888"><br>
-Scott<br>
</font></span></blockquote></div><br>