IXR_ClientMulticall::__construct() WordPress Method

The IXR_ClientMulticall class is used to make multiple XML-RPC calls in a single request. It is useful for making several calls to different methods on different servers, or for making a large number of calls to the same method on the same server.

IXR_ClientMulticall::__construct( $server,  $path = false,  $port = 80 ) #

PHP5 constructor.


Source

File: wp-includes/IXR/class-IXR-clientmulticall.php

    function __construct( $server, $path = false, $port = 80 )
    {
        parent::IXR_Client($server, $path, $port);
        $this->useragent = 'The Incutio XML-RPC PHP Library (multicall client)';
    }

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.