Tribe__Process__Queue::set_max_frag_size( int $max_frag_size )

Sets the maximum size, in bytes, of the queue fragments.

This will prevent the class from trying to read the value from the database.


Parameters

$max_frag_size

(int) (Required)


Top ↑

Source

File: src/Tribe/Process/Queue.php

	public function set_max_frag_size( $max_frag_size ) {
		$this->max_frag_size = $max_frag_size;
	}

Top ↑

Changelog

Changelog
Version Description
4.7.12 Introduced.