⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cngpsmproxy.java

📁 华为CNGP.CMPP.SGIP.CMPP源代码。
💻 JAVA
字号:
package com.huawei.smproxy;

import java.io.IOException;
import java.util.Map;

import com.huawei.insa2.comm.cngp.CNGPConnection;
import com.huawei.insa2.comm.cngp.CNGPTransaction;
import com.huawei.insa2.comm.cngp.message.CNGPDeliverMessage;
import com.huawei.insa2.comm.cngp.message.CNGPDeliverRespMessage;
import com.huawei.insa2.comm.cngp.message.CNGPMessage;
import com.huawei.insa2.util.Args;

public class CNGPSMProxy {
	private CNGPConnection conn;

	public CNGPSMProxy(Map args) {
		this(new Args(args));
	}

	public CNGPSMProxy(Args args) {
		conn = new CNGPConnection(args);
		conn.addEventListener(new CNGPEventAdapter(this));
		conn.waitAvailable();
		if (!conn.available())
			throw new IllegalStateException(conn.getError());
		else
			return;
	}

	public CNGPMessage send(CNGPMessage message) throws IOException {
		if (message == null)
			return null;
		CNGPTransaction t = (CNGPTransaction) conn.createChild();
		try {
			t.send(message);
			t.waitResponse();
			CNGPMessage rsp = t.getResponse();
			CNGPMessage cngpmessage = rsp;
			return cngpmessage;
		} finally {
			t.close();
		}
	}

	public void onTerminate() {
	}

	public CNGPMessage onDeliver(CNGPDeliverMessage msg) {
		return new CNGPDeliverRespMessage(msg.getMsgId(), 0);
	}

	public void close() {
		conn.close();
	}

	public CNGPConnection getConn() {
		return conn;
	}

	public String getConnState() {
		return conn.getError();
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -