multicast-sig.sml

来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 33 行

SML
33
字号
(* multicast-sig.sml * * COPYRIGHT (c) 1990 by John H. Reppy.  See COPYRIGHT file for details. * * Asynchronous multicast (one-to-many) channels. *)signature MULTICAST =  sig    type 'a mchan    type 'a port    type 'a event = 'a CML.event    val mChannel : unit -> 'a mchan	(* create a new multicast channel *)    val port : 'a mchan -> 'a port	(* create a new output port on a channel *)    val copy : 'a port -> 'a port	(* create a new output port on a channel that has the same state as the	 * given port.  I.e., the stream of messages seen on the two ports will	 * be the same.	 * NOTE: if two (or more) independent threads are reading from the	 * same port, then the copy operation may not be accurate.	 *)    val recv : 'a port -> 'a    val recvEvt : 'a port -> 'a event	(* receive a message from a port *)    val multicast : ('a mchan * 'a) -> unit	(* send a message to all of the ports of a channel *)  end (* MULTICAST *)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?