diff options
author | Sarven Capadisli <csarven@status.net> | 2010-01-13 13:37:04 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-01-13 13:37:04 +0000 |
commit | 543026b8d1411c7d71a6482d0649ab3523f489b8 (patch) | |
tree | b4e4ac6a8f89411faf7a0cfd11fbe63a4a344a03 /lib/cache.php | |
parent | 21512910c1d882b62f921154209e6f3c4792f03b (diff) | |
parent | c26246c4c3eb7fb4002e7280c0421ed2fa96b767 (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'lib/cache.php')
-rw-r--r-- | lib/cache.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/cache.php b/lib/cache.php index b7b34c050..635c96ad4 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -179,4 +179,23 @@ class Cache return $success; } + + /** + * Close or reconnect any remote connections, such as to give + * daemon processes a chance to reconnect on a fresh socket. + * + * @return boolean success flag + */ + + function reconnect() + { + $success = false; + + if (Event::handle('StartCacheReconnect', array(&$success))) { + $success = true; + Event::handle('EndCacheReconnect', array()); + } + + return $success; + } } |