]> git.mxchange.org Git - core.git/blob - framework/main/classes/handler/raw_data/network/class_
also the factory has been imported
[core.git] / framework / main / classes / handler / raw_data / network / class_
1 <?php
2 // Own namespace
3 namespace CoreFramework\Handler\RawData;
4
5 /**
6  * A !!! raw data handler
7  *
8  * @author              Roland Haeder <webmaster@shipsimu.org>
9  * @version             0.0.0
10  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
11  * @license             GNU GPL 3.0 or any newer version
12  * @link                http://www.shipsimu.org
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
26  */
27 class ???RawDataHandler extends BaseRawDataHandler implements Networkable {
28         /**
29          * Last socket error (default: Success)
30          */
31         private $lastSocketError = 0;
32
33         /**
34          * Protected constructor
35          *
36          * @return      void
37          */
38         protected function __construct () {
39                 // Call parent constructor
40                 parent::__construct(__CLASS__);
41
42                 // Set handler name
43                 $this->setHandlerName('|||');
44         }
45
46         /**
47          * Creates an instance of this class
48          *
49          * @return      $handlerInstance        An instance of a Networkable class
50          */
51         public static final function create???RawDataHandler () {
52                 // Get new instance
53                 $handlerInstance = new ???RawDataHandler();
54
55                 // Return the prepared instance
56                 return $handlerInstance;
57         }
58
59         /**
60          * Processes raw data from given resource. This is mostly useful for TCP
61          * package handling and is implemented in the ???Listener class
62          *
63          * @param       $resource       A valid socket resource array
64          * @return      void
65          */
66         public function processRawDataFromResource (array $socketArray) {
67         }
68
69 }