Stream Processing Actor

      proc {Actor L}
         case L of H|T then            %% wait for incoming msg
            {ProcessMsg H}             %% retrieve and process msg
            {Actor T}                  %% process subsequent messages
         end
      end
or:
      for H in L do {ProcessMsg H} end
or even:
      {ForAll L ProcessMsg}