Merge pull request #129 from apache/refactor/ci

refactor ci workflow based on Go v1.23
tree: 1a22026499f4a20eecaad3ee9f1b05a14b92bc78
  1. .github/
  2. benchmark/
  3. demo/
  4. examples/
  5. .asf.yaml
  6. .gitignore
  7. .gitmodules
  8. .licenserc.yaml
  9. .travis.yml
  10. before_validate_license.sh
  11. CHANGE.md
  12. client.go
  13. client_test.go
  14. connection.go
  15. const.go
  16. getty.go
  17. go.mod
  18. go.sum
  19. LICENSE
  20. logger.go
  21. Makefile
  22. options.go
  23. options_test.go
  24. README.md
  25. server.go
  26. server_test.go
  27. session.go
  28. tls.go
README.md

getty

a netty like asynchronous network I/O library

Build Status codecov go.dev reference Go Report Card license

INTRO

Getty is a asynchronous network I/O library in golang. Getty works on tcp/udp/websocket network protocol and supplies a uniform interface.

In getty there are two goroutines in one connection(session), one reads tcp stream/udp packet/websocket package, the other handles logic process and writes response into network write buffer. If your logic process may take a long time, you should start a new logic process goroutine by yourself in codec.go:(Codec)OnMessage.

You can also handle heartbeat logic in codec.go:(Codec):OnCron. If you use tcp/udp, you should send hearbeat package by yourself, and then invoke session.go:(Session)UpdateActive to update its active time. Please check whether the tcp session has been timeout or not in codec.go:(Codec)OnCron by session.go:(Session)GetActive.

Whatever if you use websocket, you do not need to care about hearbeat request/response because Getty do this task in session.go:(Session)handleLoop by sending/received websocket ping/pong frames. You just need to check whether the websocket session has been timeout or not in codec.go:(Codec)OnCron by session.go:(Session)GetActive.

LICENCE

Apache License 2.0