2014-10-03 03:16:57 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2014-10-03 22:39:09 +04:00
|
|
|
namespace OCP\Diagnostics;
|
2014-10-03 03:16:57 +04:00
|
|
|
|
|
|
|
interface IEventLogger {
|
|
|
|
/**
|
|
|
|
* Mark the start of an event
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param string $description
|
|
|
|
*/
|
|
|
|
public function start($id, $description);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark the end of an event
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
*/
|
|
|
|
public function end($id);
|
|
|
|
|
2014-10-15 15:14:13 +04:00
|
|
|
/**
|
|
|
|
* @param string $id
|
|
|
|
* @param string $description
|
|
|
|
* @param float $start
|
|
|
|
* @param float $end
|
|
|
|
*/
|
|
|
|
public function log($id, $description, $start, $end);
|
|
|
|
|
2014-10-03 03:16:57 +04:00
|
|
|
/**
|
2014-10-03 22:39:09 +04:00
|
|
|
* @return \OCP\Diagnostics\IEvent[]
|
2014-10-03 03:16:57 +04:00
|
|
|
*/
|
|
|
|
public function getEvents();
|
|
|
|
}
|