#http #streaming #json

http-stream

Http json流式传输库

12个版本

0.14.2 2020年6月20日
0.14.1 2020年6月20日
0.13.0 2019年9月5日
0.12.2 2019年5月4日
0.9.2 2019年3月26日

#streaming中排名180

每月下载量29

MIT许可MIT

8KB
151 代码行

自述文件

为Rustaceans提供的线程安全EventSource库。

示例

	
	let s = Streamer::new();
	let s1=s.clone();
	std::thread::spawn(||s1.start("localhost:1234"));
	
	loop
	{
		std::thread::sleep_ms(1000);
		s.send_with_event("myevent","mydata");
	}

待办事项

  • send_with_event
  • send_json
  • new_with_client_timeout
  • new_with_auth
  • resume

依赖项

~2.5–4MB
~71K SLoC