AI-generated Key Takeaways
-
ChannelClient.Channel represents a channel created through ChannelClient.openChannel(String, String).
-
The Channel interface is parcelable, immutable, and can be used in collections due to implemented equals and hashCode methods.
-
You can retrieve the node ID and path associated with the channel using the getNodeId() and getPath() methods respectively.
A channel created through
ChannelClient.openChannel(String, String).
The implementation of this interface is parcelable and immutable, and implements
reasonable Object.equals(Object)
and Object.hashCode()
methods, so can be used in collections.
Inherited Constant Summary
Public Method Summary
| abstract String |
getNodeId()
Returns the node ID of the node on the other side of the channel.
|
| abstract String |
getPath()
Returns the path that was used to open the channel.
|
Inherited Method Summary
Public Methods
public abstract String getNodeId ()
Returns the node ID of the node on the other side of the channel.
public abstract String getPath ()
Returns the path that was used to open the channel.