MediaWiki REL1_35
FileBackendStoreOpHandle.php
Go to the documentation of this file.
1<?php
34 public $params = []; // params to caller functions
36 public $backend;
38 public $resourcesToClose = [];
40 public $call;
41
45 public function closeResources() {
46 array_map( 'fclose', $this->resourcesToClose );
47 }
48}
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.