我想维护池 JSMPP 连接以发送 SMS。根据要求我需要定义 MIN 和 MAX 连接,但是当前的 JSMPP 库允许我们创建单个连接。
/**
* Default constructor of {@link SMPPSession}. The next action might be
* connect and bind to a destination message center.
*
* @see #connectAndBind(String, int, BindType, String, String, String, TypeOfNumber, NumberingPlanIndicator, String)
*/
public SMPPSession() {
this(new SynchronizedPDUSender(new DefaultPDUSender(new DefaultComposer())),
new DefaultPDUReader(),
SocketConnectionFactory.getInstance());
}
如何为连接池扩展 JSMPP 库。
谢谢