Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98204654
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
Sat, Jan 11, 01:01
Size
519 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 01:01 (2 d)
Engine
blob
Format
Raw Data
Handle
23500622
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