实用比较:JAVA事件模式下PHP如何实现

2016-01-29 13:23 33 1 收藏

实用比较:JAVA事件模式下PHP如何实现,实用比较:JAVA事件模式下PHP如何实现

【 tulaoshi.com - PHP 】

    【PHPChina讯】本文介绍了JAVA事件模式的PHP实现。在我以前的文章里,我概括了系统事件定义和使用call_user_func()函数建立php 事件模块的例子。本文通过引入高级的基于sender/eventObject/listener的php事件模块对这个科目进行了扩展。

    下面是一个JAVA 事件系统的例子。这个例子基于Apache小组 开发的,来源于Apache.org并进行了重新缩短和重顶格式后的ProtocolCommandSupport.java, ProtocolCommandListener.java and ProtocolCommandEvent.java文件。ProtocolCommandSupport.java文件包含了事件创建类,类的实例由系统创建,当系统被实例调用时,就就会创建该事件。事实上这个类看上去就像包含了一个监听器---类监听到事件创建并且在事件创建被通知时进行反应。注意“addProtocolCommandListener” and “removeProtocolCommandListener”方法,他们用于附加和分离监听。另外2个方法fireCommandSent” and “fireReplyReceived”,召唤了对象“__listeners”容器储存的方法。该容器实际上,只积累了ProtocolCommandListener 对象,因为只有该对象在调用addProtocolCommandListener” and “removeProtocolCommandListener”方法时能够被通过。

ProtocolCommandSupport.java

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/php/)

public class ProtocolCommandSupport implements Serializable {

 private Object __source;
 private ListenerList __listeners = new ListenerList();

 public ProtocolCommandSupport(Object source) {
  __source = source;
 }

 /***
  * Fires a ProtocolCommandEvent signalling the sending of a command to all
  * registered listeners.
  ***/
 public void fireCommandSent(String command, String message) {
  Enumeration en = __listeners.getListeners();
  ProtocolCommandEvent event =
   new ProtocolCommandEvent(__source, command, message);
  ProtocolCommandListener listener;
  while (en.hasMoreElements()) {
   listener = (ProtocolCommandListener)en.nextElement();
   listener.protocolCommandSent(event);
  }
 }

 /***
  * Fires a ProtocolCommandEvent signalling the reception of a command reply
  * to all registered listeners.
  ***/
 public void fireReplyReceived(int replyCode, String message) {
  Enumeration en = __listeners.getListeners();
  ProtocolCommandEvent event =
   new ProtocolCommandEvent(__source, replyCode, message);
  ProtocolCommandListener listener;
  while (en.hasMoreElements()) {
   listener = (ProtocolCommandListener)en.nextElement();
   listener.protocolReplyReceived(event);
  }
 }

 public void addProtocolCommandListener(ProtocolCommandListener listener) {
  __listeners.addListener(listener);
 }

 public void removeProtocolCommandListener(ProtocolCommandListener listener) {
  __listeners.removeListener(listener);
 }

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/php/)

}

    ProtocolCommandListener.java 包含了监听器接口。其后的含义是任何将要由ProtocolCommandSupport类认证的事件将要提供这个能够实现一个足够被事件认证接口。这就可能造成了一个新的种类,2个或更多不同的类被事件认证,因为一个类能够实现多重接口。
ProtocolCommandListener.java

public interface ProtocolCommandListener extends EventListener {

 /***
  * This method is invoked by a ProtocolCommandEvent source after
  * sending a protocol command to a server.
  *
  * @param event The ProtocolCommandEvent fired.
  ***/
 public void protocolCommandSent(ProtocolCommandEvent event);

 /***
  * This method is invoked by a ProtocolCommandEvent source after
  * receiving a reply from a server.
  *
  * @param event The ProtocolCommandEvent fired.
  ***/
 public void protocolReplyReceived(ProtocolCommandEvent event);

}

    本文的最后一个文件是ProtocolCommandEvent.java。这个文件包含了一个EventO

来源:http://www.tulaoshi.com/n/20160129/1490007.html

延伸阅读
标签: Web开发
JAVA 是个非常强大的编程利器,它的扩展库也是非常的有用,这篇教程,主要讲述怎样使用 PHP 调用功能强大的 JAVA 类库 (classes)。为了方便你的学习,这篇教程将包括 JAVA 的安装及一些基本的例子。 Windows下的安装 第一步:安装 JDK,这是非常容易的,你只需一路回车的安装好。然后做好以下步骤。 在 Win9x 下加入 :PATH...
标签: Web开发
我一直以来都是以 ISAPI 模式运行 PHP 的,这种方式最大的缺点就是稳定性不好,当 PHP 出错的时候,Apache进程也死掉了。后来看到网上关于 PHP 以 FastCGI 模式运行的介绍,其中提到的种种好处(稳定、安全、高性能)让我决定尝试一下。 不过事情远不如预计的那么顺利。Google 了无数次也没找到一篇如何在 Windows 下用 Apache + Fas...
标签: PHP
用户可接受的语言信息,放在$_SERVER['HTTP_ACCEPT_LANGUAGE']里, 变量信息是类似这样的 "zh-cn", 如果是多语言列,是类似 "zh-cn,en;q=0.8,ko;q=0.5,zh-tw;q=0.3" 下面的问题可以迎刃而解了。 代码: <?php error_reporting(E_ALL ^ E_NOTICE); // 分析 HTTP_ACCEPT_LANGUAGE 的属性 // 这里只取第一语言设置 (其...
设有一个事件: interface XXXListener { void event1Happens(String param); void event2Happens(String param); } 可以做一个对应的类: class XXXDispatcher extends Vector implements XXXListener {  public void event1Happens(String param) {     for (XXXListener liste...
标签: Web开发
  FtpList部分是用来显示FTP服务器上的文件;   GetButton部分为从FTP服务器下传一个文件;   PutButton部分为向FTP服务器上传一个文件。   别忘了在程序中还要引入两个库文件(import sun.net.*,import sun.net.ftp.*)。   以下是这三部分的JAVA源程序:   (1)显示FTP服务器上的文件  ...

经验教程

646

收藏

6
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部