OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 * this returns an empty string. | 86 * this returns an empty string. |
87 */ | 87 */ |
88 @property(nonatomic, readonly) NSString *protocol; | 88 @property(nonatomic, readonly) NSString *protocol; |
89 | 89 |
90 /** | 90 /** |
91 * Returns whether this data channel was negotiated by the application or not. | 91 * Returns whether this data channel was negotiated by the application or not. |
92 */ | 92 */ |
93 @property(nonatomic, readonly) BOOL isNegotiated; | 93 @property(nonatomic, readonly) BOOL isNegotiated; |
94 | 94 |
95 /** The identifier for this data channel. */ | 95 /** The identifier for this data channel. */ |
96 @property(nonatomic, readonly) int id; | 96 @property(nonatomic, readonly) int channelId; |
97 | 97 |
98 /** The state of the data channel. */ | 98 /** The state of the data channel. */ |
99 @property(nonatomic, readonly) RTCDataChannelState readyState; | 99 @property(nonatomic, readonly) RTCDataChannelState readyState; |
100 | 100 |
101 /** | 101 /** |
102 * The number of bytes of application data that have been queued using | 102 * The number of bytes of application data that have been queued using |
103 * |sendData:| but that have not yet been transmitted to the network. | 103 * |sendData:| but that have not yet been transmitted to the network. |
104 */ | 104 */ |
105 @property(nonatomic, readonly) uint64_t bufferedAmount; | 105 @property(nonatomic, readonly) uint64_t bufferedAmount; |
106 | 106 |
107 /** The delegate for this data channel. */ | 107 /** The delegate for this data channel. */ |
108 @property(nonatomic, weak) id<RTCDataChannelDelegate> delegate; | 108 @property(nonatomic, weak) id<RTCDataChannelDelegate> delegate; |
109 | 109 |
110 - (instancetype)init NS_UNAVAILABLE; | 110 - (instancetype)init NS_UNAVAILABLE; |
111 | 111 |
112 /** Closes the data channel. */ | 112 /** Closes the data channel. */ |
113 - (void)close; | 113 - (void)close; |
114 | 114 |
115 /** Attempt to send |data| on this data channel's underlying data transport. */ | 115 /** Attempt to send |data| on this data channel's underlying data transport. */ |
116 - (BOOL)sendData:(RTCDataBuffer *)data; | 116 - (BOOL)sendData:(RTCDataBuffer *)data; |
117 | 117 |
118 @end | 118 @end |
119 | 119 |
120 NS_ASSUME_NONNULL_END | 120 NS_ASSUME_NONNULL_END |
OLD | NEW |