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

📄 outbindeventlistener.java

📁 Logica lastest SMPP API
💻 JAVA
字号:
/* * Copyright (c) 1996-2001 * Logica Mobile Networks Limited * All rights reserved. * * This software is distributed under Logica Open Source License Version 1.0 * ("Licence Agreement"). You shall use it and distribute only in accordance * with the terms of the License Agreement. * */package com.logica.smpp;import java.util.EventListener;/** * Callback interface for <code>Outbind</code> requests received from SMSC. * The only method of this interface, <code>handleOutbind</code>, is called * whenever an outbind request is received from SMSC.<br> * <emp>Important:</emp>The <code>handleOutbind</code> method is called * from the receiver's thread context, so the implementation of the listener * should ensure that there is no deadloock, or at least not too much * time spent in the method. * * @author Logica Mobile Networks SMPP Open Source Team * @version 1.1, 2 Oct 2001 * @see OutbindReceiver *//*  02-10-01 ticp@logica.com comments added*/public interface OutbindEventListener extends EventListener{    public void handleOutbind(OutbindEvent outbind);}

⌨️ 快捷键说明

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