Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1821298
SplitterInterface.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
998 B
Subscribers
None
SplitterInterface.php
View Options
<?php
namespace
Sabre\VObject\Splitter
;
/**
* VObject splitter
*
* The splitter is responsible for reading a large vCard or iCalendar object,
* and splitting it into multiple objects.
*
* This is for example for Card and CalDAV, which require every event and vcard
* to exist in their own objects, instead of one large one.
*
* @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
* @author Dominik Tobschall
* @license http://sabre.io/license/ Modified BSD License
*/
interface
SplitterInterface
{
/**
* Constructor
*
* The splitter should receive an readable file stream as it's input.
*
* @param resource $input
*/
public
function
__construct
(
$input
);
/**
* Every time getNext() is called, a new object will be parsed, until we
* hit the end of the stream.
*
* When the end is reached, null will be returned.
*
* @return Sabre\VObject\Component|null
*/
public
function
getNext
();
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Dec 23, 4:12 PM (4 h, 21 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
915619
Default Alt Text
SplitterInterface.php (998 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment