MediaWiki REL1_34
FileBackendStoreOpHandle.php
Go to the documentation of this file.
1<?php
32 public $params = []; // params to caller functions
34 public $backend;
36 public $resourcesToClose = [];
38 public $call;
39
43 public function closeResources() {
44 array_map( 'fclose', $this->resourcesToClose );
45 }
46}
FileBackendStore helper class for performing asynchronous file operations.
closeResources()
Close all open file handles.
callable $call
name that identifies the function called
Base class for all backends using particular storage medium.