Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
namespace Aws;
3
 
4
/**
5
 * Interface for adding and retrieving client-side monitoring events
6
 */
7
interface MonitoringEventsInterface
8
{
9
 
10
    /**
11
     * Get client-side monitoring events attached to this object. Each event is
12
     * represented as an associative array within the returned array.
13
     *
14
     * @return array
15
     */
16
    public function getMonitoringEvents();
17
 
18
    /**
19
     * Prepend a client-side monitoring event to this object's event list
20
     *
21
     * @param array $event
22
     */
23
    public function prependMonitoringEvent(array $event);
24
 
25
    /**
26
     * Append a client-side monitoring event to this object's event list
27
     *
28
     * @param array $event
29
     */
30
    public function appendMonitoringEvent(array $event);
31
 
32
}