Code hot swapping in Erlang

Posted by Roger Alsing on Stack Overflow See other posts from Stack Overflow or by Roger Alsing
Published on 2010-06-03T19:01:18Z Indexed on 2010/06/03 19:04 UTC
Read the original article Hit count: 302

Filed under:
|
|

I recently saw a video about Erlang on InfoQ, In that video one of the creators presented how to replace the behavior of a message loop.

He was simply sending a message containing a lambda of the new version of the message loop code, which then was invoked instead of calling the old loop again.

Is that code hot swapping in Erlang reffers to? Or is that some other more native feature?

© Stack Overflow or respective owner

Related posts about erlang

Related posts about message-loop