前言 前面小飞已经讲解了NIO和Netty服务端启动,这一讲是Client的启动过程. 源码系列的文章依旧还是遵循大白话+画图的风格来讲解,本文Netty源码及以后的文章版本都基于:4.1.22.Final 本篇是以NettyClient启动为切入点,带大家一步步进入Netty源码的世界. Client启动流程揭秘 1.探秘的入口:netty-client demo 这里用netty-exmaple中的EchoClient来作为例子: public final class EchoClient
如何让freeswitch转发客户端自定义的INFO消息 英文概述: this article is about how to configure freeswitch to forward self-defined info message of sip client to another. 问题描述 需要对接第三方的SIP客户端,那个客户端有一套自定义的INFO消息机制. SipClientA <---> FreeSWITCH <---> SipClientB 如上面的结构所示
client 关闭后会执行 finally 代码块,可以在这里可以进行重连操作 public class NettyClient implements Runnable { private final String host; private final int port; private final int reconnectSleepSeconds; public NettyClient(String host, int port, int reconnectSleepSeconds){ t