Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了试验我一直在开发的新路由算法,我想在 Restlet 框架内实现我自己的通信协议(例如,替换标准的 HTTP)。你能告诉我如何扩展框架以引入新协议吗?
在执行 new Client("myProtocol") 或 new Server("myProtocol") 时,您需要在 org.restlet.engine.Engine 对象中注册与您的新协议对象匹配的新助手。
例如,您应该看看如何支持 SIP 协议。