phpDocumentor GloryLands
Extensions
[ class tree: GloryLands ] [ index: GloryLands ] [ all elements ]

Source for file glIPC.php

Documentation is available at glIPC.php

  1. <?php
  2. /**
  3.   * GloryLands Extendions System
  4.   * Inter-Process Communication
  5.   *
  6.   * <pre>
  7.   * GloryLands, a Web-Based, Massive Multiplayer Online RPG/Strategy Game
  8.   * Copyright (C) 2008-09  John Haralampidis <jïhnys2[at]gmail.cïm>
  9.   *
  10.   * This program is free software: you can redistribute it and/or modify
  11.   * it under the terms of the GNU General Public License as published by
  12.   * the Free Software Foundation, either version 3 of the License, or
  13.   * (at your option) any later version.
  14.   *
  15.   * This program is distributed in the hope that it will be useful,
  16.   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.   * GNU General Public License for more details.
  19.   *
  20.   * You should have received a copy of the GNU General Public License
  21.   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  22.   *
  23.   * For any help/suggestions or troubleshooting you can see the
  24.   * project community website at <http://www.glorylands.gr>
  25.   * </pre>
  26.   *
  27.   * @license GNU/GPLv3 GNU General Public License version 3
  28.   * @package GloryLands
  29.   * @subpackage Extensions
  30.   * @author John Haralampidis <jïhnys2[at]gmail.cïm>
  31.   * @copyright Copyright (C) 2007-2009, John Haralampidis
  32.   * @version 1.0
  33.   */
  34.  
  35. /**
  36.   * GloryLands Inter-Process Communication system
  37.   *
  38.   * This class provides methods that allows inter-process (Actually intra-session)
  39.   * communication mechanisms.
  40.   *
  41.   * @subpackage Extensions
  42.   * @version 1.0
  43.   */
  44. class GLIPC {
  45.     
  46.     /**
  47.       * Get a global, inter-process available function
  48.       */
  49.     static function get($var$group 'general'{
  50.         
  51.     }
  52.  
  53.     /**
  54.       * Set a global, inter-process available function
  55.       */
  56.     static function set($var$value$group 'general'{
  57.         
  58.     }
  59.  
  60.     /**
  61.       * Register a function for an inter-process callback
  62.       */
  63.     static function register($hook$function{
  64.     
  65.     }
  66.  
  67.     /**
  68.       * Call an inter-process callback function
  69.       */
  70.     static function call($hook$function{
  71.     
  72.     }
  73. }
  74.  
  75. ?>

Documentation generated on Tue, 13 Oct 2009 23:49:03 +0300 by phpDocumentor 1.4.1