1 | <?php |
||
9 | class PartialAllocationPromise extends AllocationPromise |
||
10 | { |
||
11 | /** |
||
12 | * Returns the allocation now, synchronously |
||
13 | * |
||
14 | * If the pool does not have sufficient resources available then the number of resources will |
||
15 | * burst beyond the pool size in order to facilitate this allocation |
||
16 | * |
||
17 | * @return Allocation |
||
18 | * @throws \RuntimeException thrown if the allocation has previously failed |
||
19 | */ |
||
20 | public function force() |
||
24 | } |
||
25 |