teragrep / rlp_03

Java RELP Server library
GNU Affero General Public License v3.0
1 stars 5 forks source link

generify to be application protocol agnostic #133

Closed kortemik closed 2 months ago

kortemik commented 5 months ago

Description currently rlp_03 is about relp, however the code can be refactored to be application protocol agnostic with little effort, at least for tcp and tcp+tls.

Use case or motivation behind the feature request rlp_03 has very performant design and it could be used for other protocols than relp with the design it has. it shares the purpose with Netty is trying to achieve.

these parts are currently the delegate and the functions used to check if frames are complete.

i think that this should support only the non-blocking mode.

Related issues

Additional context

kortemik commented 5 months ago

check also if udp can be implemented, and dtls too

kortemik commented 2 months ago

implemented as net_01