Class ChannelSender
Definition
- Assembly:
- Tizen.Core.dll
Represents the channel sender used for inter-task communication. It provides methods to send messages between tasks in order to facilitate task coordination.
C#
Copy
public class ChannelSender : IDisposable
- Inheritance
-
objectChannel
Sender
- Implements
-
System.
IDisposable
Methods
Declaration
C#
Copy
public ChannelSender Clone()
Returns
Type | Description |
---|---|
Channel |
A newly created channel sender instance. |
Examples
Copy
var channel = new Channel();
var sender = channel.Sender;
var clonedSender = sender.Clone();
Exceptions
Type | Condition |
---|---|
System. |
Thrown when failed because of an invalid operation. |
System. |
Thrown when out of memory. |
Declaration
C#
Copy
public void Dispose()
Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
Declaration
C#
Copy
protected ~ChannelSender()
Declaration
C#
Copy
public void Send(ChannelObject channelObject)
Parameters
Type | Name | Description |
---|---|---|
Channel |
channelObject | The channel object instance. |
Remarks
It's important to call the Dispose() method on the passed channel object to release resources.
Examples
Copy
var channel = new Channel();
var sender = channel.Sender;
string message = "Test";
using (var channelObject = new ChannelObject(1, message))
{
sender.Send(channelObject);
}
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the argument is null. |
System. |
Thrown when the argument is invalid. |
System. |
Thrown when failed because of an invalid operation. |
Implements
System.IDisposable