Server/Interface.php

Show: PublicProtectedPrivateinherited
    Table of Contents
    Zend Framework
    LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
    Category
    Zend  
    Copyright
    Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
    License
    New BSD License  
    Package
    Zend_Server  

    \Zend_Server_Interface

    Package: Zend_Server
    Zend_Server_Interface
    Category
    Zend  
    Copyright
    Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
    License
    New BSD License  
    Version
    $Id$  

    Methods

    methodpublicaddFunction(string $function, string $namespace = '') : void

    Attach a function as a server method

    Namespacing is primarily for xmlrpc, but may be used with other implementations to prevent naming collisions.
    Parameters
    NameTypeDescription
    $functionstring
    $namespacestring
    methodpublicfault(mixed $fault = null, int $code = 404) : mixed

    Generate a server fault

    Parameters
    NameTypeDescription
    $faultmixed
    $codeint
    Returns
    TypeDescription
    mixed
    methodpublicgetFunctions() : array

    Return a server definition array

    Returns a server definition array as created using {@link * Zend_Server_Reflection}. Can be used for server introspection, documentation, or persistence.
    Returns
    TypeDescription
    array
    Details
    Access
    public  
    methodpublichandle(mixed $request = false) : mixed

    Handle a request

    Requests may be passed in, or the server may automagically determine the request based on defaults. Dispatches server request to appropriate method and returns a response
    Parameters
    NameTypeDescription
    $requestmixed
    Returns
    TypeDescription
    mixed
    methodpublicloadFunctions( $definition) : void

    Load server definition

    Used for persistence; loads a construct as returned by {@link getFunctions()}.
    Parameters
    NameTypeDescription
    $definition
    methodpublicsetClass(mixed $class, string $namespace = '',  $argv = null) : void

    Attach a class to a server

    The individual implementations should probably allow passing a variable number of arguments in, so that developers may define custom runtime arguments to pass to server methods. Namespacing is primarily for xmlrpc, but could be used for other implementations as well.
    Parameters
    NameTypeDescription
    $classmixed

    Class name or object instance to examine and attach to the server.

    $namespacestring

    Optional namespace with which to prepend method names in the dispatch table. methods in the class will be valid callbacks.

    $argv
    methodpublicsetPersistence(int $mode) : void

    Set server persistence

    Parameters
    NameTypeDescription
    $modeint
    Details
    Todo
    Determine how to implement this  
    Documentation was generated by phpDocumentor 2.2.0 .