Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102112125
PhabricatorExecFutureFileUploadSource.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 17, 05:41
Size
519 B
Mime Type
text/x-php
Expires
Wed, Feb 19, 05:41 (2 d)
Engine
blob
Format
Raw Data
Handle
24284206
Attached To
rPH Phabricator
PhabricatorExecFutureFileUploadSource.php
View Options
<?php
final
class
PhabricatorExecFutureFileUploadSource
extends
PhabricatorFileUploadSource
{
private
$future
;
public
function
setExecFuture
(
ExecFuture
$future
)
{
$this
->
future
=
$future
;
return
$this
;
}
public
function
getExecFuture
()
{
return
$this
->
future
;
}
protected
function
newDataIterator
()
{
$future
=
$this
->
getExecFuture
();
return
id
(
new
LinesOfALargeExecFuture
(
$future
))
->
setDelimiter
(
null
);
}
protected
function
getDataLength
()
{
return
null
;
}
}
Event Timeline
Log In to Comment