You are here

public static function UltimateCronSignalCache::flush in Ultimate Cron 7.2

Clear signals.

Parameters

string $name: The name of the job.

File

./ultimate_cron.cache-signal.inc, line 92
File containing functions for Ultimate Cron signal handling using cache.

Class

UltimateCronSignalCache
Class for handling Ultimate Cron signals.

Code

public static function flush($name) {
  $bin = variable_get('ultimate_cron_signal_cache_bin', 'signal');
  cache_set("flushed-{$name}", microtime(TRUE), $bin);
}