SegmentHandler.class.phpGo to the documentation of this file.00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00017 interface SegmentHandler
00018 {
00019 public function __construct($segmentId);
00020
00022 public function ping($key);
00023
00025 public function touch($key);
00026
00028 public function unlink($key);
00029
00031 public function drop();
00032
00034 public function getPrecision();
00035 }
00036 ?>
|
|