PHPLights/Documentation/liblights/LsPublisher

From Linuxnetworks
< PHPLights‎ | Documentation‎ | liblights
Revision as of 00:16, 23 September 2007 by Nose (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Synopsis

abstract class LsPublisher
  implements LsPublisherIface
{
  protected $listeners = array();

  public function addListener( LsListenerIface $l )
  public function removeListener( LsListenerIface $l )

  protected function notifyListeners()
}

Description

Public functions

addListener()

public function addListener( LsListenerIface $l )

removeListener()

public function removeListener( LsListenerIface $l )

Protected functions

notifyListeners

protected function notifyListeners()



Back to Overview