Slide 20
Slide 20 text
public function loadCursor($channel_id, $from, $to)
{
$collection = $this->getMongoCollection();
$this->applyChannelId($channel_id);
$this->applyTimeRanges($from, $to);
$this->cursor = $collection->find($this->filter);
}
public function loadCursor($channel_id, $from, $to)
{
$collection = $this->getMongoCollection();
$this->applyChannelId(urldecode($channel_id));
$this->applyTimeRanges($from, $to);
$this->cursor = $collection->find($this->filter);
}