tgstation-server
6.16.0
The /tg/station 13 server suite
Toggle main menu visibility
Main Page
Features
API
Architecture
Packages
Package List
Package Members
All
[
a
b
c
d
e
f
h
i
j
m
o
p
r
s
t
w
Functions
Variables
Enumerations
a
b
c
d
e
f
h
i
j
m
o
p
r
s
t
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerations
Properties
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Events
Files
File List
File Members
All
Functions
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Pages
Loading...
Searching...
No Matches
src
Tgstation.Server.Host
Transfer
IFileTransferStreamHandler.cs
Go to the documentation of this file.
1
using
System;
2
using
System.IO;
3
using
System.Threading;
4
using
System.Threading.Tasks;
5
6
using
Tgstation.Server.Api.Models.Response
;
7
8
namespace
Tgstation.Server.Host.Transfer
9
{
13
public
interface
IFileTransferStreamHandler
14
{
22
ValueTask<ErrorMessageResponse?>
SetUploadStream
(
FileTicketResponse
ticketResponse,
Stream
stream, CancellationToken cancellationToken);
23
30
ValueTask<Tuple<Stream?, ErrorMessageResponse?>>
RetrieveDownloadStream
(
FileTicketResponse
ticketResponse, CancellationToken cancellationToken);
31
}
13
public
interface
IFileTransferStreamHandler
{
…
};
32
}
Stream
Tgstation.Server.Api.Models.Response.FileTicketResponse
Response for when file transfers are necessary.
Definition
FileTicketResponse.cs:7
Tgstation.Server.Host.Transfer.IFileTransferStreamHandler
Reads and writes to Streams associated with FileTicketResponses.
Definition
IFileTransferStreamHandler.cs:14
Tgstation.Server.Host.Transfer.IFileTransferStreamHandler.RetrieveDownloadStream
ValueTask< Tuple< Stream?, ErrorMessageResponse?> > RetrieveDownloadStream(FileTicketResponse ticketResponse, CancellationToken cancellationToken)
Gets the the Stream for a given ticketResponse associated with a pending download.
Tgstation.Server.Host.Transfer.IFileTransferStreamHandler.SetUploadStream
ValueTask< ErrorMessageResponse?> SetUploadStream(FileTicketResponse ticketResponse, Stream stream, CancellationToken cancellationToken)
Sets the Stream for a given ticketResponse associated with a pending upload.
Tgstation.Server.Api.Models.Response
Definition
AdministrationResponse.cs:6
Tgstation.Server.Host.Transfer
Definition
FileDownloadProvider.cs:9
Generated by
1.9.8