2014-09-10 12:00:46 +02:00
|
|
|
<?php
|
2014-09-12 23:22:37 +02:00
|
|
|
namespace InfluxDB\Adapter;
|
2014-09-10 12:00:46 +02:00
|
|
|
|
2015-01-15 00:46:01 +01:00
|
|
|
/**
|
|
|
|
|
* Every InfluxDB adapter implements this interface
|
|
|
|
|
*/
|
2014-09-11 14:50:31 +02:00
|
|
|
interface AdapterInterface
|
2014-09-10 12:00:46 +02:00
|
|
|
{
|
2015-01-15 00:46:01 +01:00
|
|
|
/**
|
|
|
|
|
* Send series into database
|
|
|
|
|
* @param mixed $message
|
|
|
|
|
* @param string|boolean $timePrecision
|
|
|
|
|
*/
|
2014-09-13 09:17:34 +02:00
|
|
|
public function send($message, $timePrecision = false);
|
2014-09-10 12:00:46 +02:00
|
|
|
}
|