private ConcurrentCommandCounter rxDeliverSM;
private ConcurrentCommandCounter rxEnquireLink;
private ConcurrentCommandCounter rxDataSM;
public DefaultSmppSessionCounters() {
this.txSubmitSM = new ConcurrentCommandCounter();
this.txDeliverSM = new ConcurrentCommandCounter();
this.txEnquireLink = new ConcurrentCommandCounter();
this.txDataSM = new ConcurrentCommandCounter();
this.rxSubmitSM = new ConcurrentCommandCounter();
this.rxDeliverSM = new ConcurrentCommandCounter();
this.rxEnquireLink = new ConcurrentCommandCounter();
this.rxDataSM = new ConcurrentCommandCounter();
}