אחרי שנוצר חיבור בין המכשירים, אפשר להתחיל להעביר נתונים. הנתונים המועברים יכולים להיות מערך פשוט של בייטים, כמו הודעת טקסט קצרה, קובץ כמו תמונה או סרטון, או סטרימינג כמו סטרימינג של אודיו מהמיקרופון של המכשיר.
אפשר לשלוח נתונים באמצעות השיטות הבאות של מופע מנהל החיבורים:
send(_:to:)startStream(_:to:)sendResource(at:withName:to:)
אפשר להשתמש בשיטות הבאות של נציג ניהול החיבורים כשמקבלים נתונים.
Swift
extension Example: ConnectionManagerDelegate {
func connectionManager(
_ connectionManager: ConnectionManager, didReceive data: Data,
withID payloadID: PayloadID, from endpointID: EndpointID) {
// A simple byte payload has been received. This will always include the full data.
}
func connectionManager(
_ connectionManager: ConnectionManager, didReceive stream: InputStream,
withID payloadID: PayloadID, from endpointID: EndpointID,
cancellationToken token: CancellationToken) {
// We have received a readable stream.
}
func connectionManager(
_ connectionManager: ConnectionManager,
didStartReceivingResourceWithID payloadID: PayloadID,
from endpointID: EndpointID, at localURL: URL,
withName name: String, cancellationToken token: CancellationToken) {
// We have started receiving a file. We will receive a separate transfer update
// event when complete.
}
func connectionManager(
_ connectionManager: ConnectionManager,
didReceiveTransferUpdate update: TransferUpdate,
from endpointID: EndpointID, forPayload payloadID: PayloadID) {
// A success, failure, cancelation or progress update.
}
}