登录 注册
当前位置:主页 > 资源下载 > 5 > 最小库condor用于在Erlang中构建可伸缩的TCP服务器

最小库condor用于在Erlang中构建可伸缩的TCP服务器

  • 更新:2024-11-03 12:11:50
  • 大小:13KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

秃鹰 Condor是在Erlang中构建可伸缩TCP服务器的最小库。 快速概述 - module ( ping_server ). - behaviour ( condor_listener ). % % condor_listener callbacks - export ([ init / 1 ]). - export ([ handle_packet / 2 ]). - export ([ handle_info / 2 ]). - export ([ terminate / 2 ]). init ([]) -> { ok , undefined }. handle_packet (<< " stop " >>, State ) -> { send_and_stop , << " ok " >>, normal , State }; handle_packet (<<