Icicle\Concurrent\Sync\SharedMemoryParcel::memDelete PHP Method

memDelete() private method

Requests the shared memory segment to be deleted.
private memDelete ( )
    private function memDelete()
    {
        if (!shmop_delete($this->handle)) {
            throw new SharedMemoryException('Failed to discard shared memory block.');
        }
    }