WorkerClearReceiveQueue(Int32) Method

Discards all available messages from the given receive queue.

Definition

Namespace: Peak.Can.Basic
Assembly: PCANBasic.NET (in PCANBasic.NET.dll) Version: 4.9.0
C#
public void ClearReceiveQueue(
	int queueIndex
)

Parameters

queueIndex  Int32
Index of the receive queue whose messages are to be discarded

Remarks

Unlike the Api class, the Worker class doesn't clear the receive queues on disconnect. A Worker object muss explicitly be instructed to clear its receive queues when deactivating the connection, i.e. by calling the Stop method, or by calling the ClearReceiveQueue/ClearAllReceiveQueues methods at any time.

This implies, that an application can keep processing messages after a connection to a PCAN Channel has been terminated.

Example

The following example shows how to clear the second receive queue (index 1).

In case of failure, an error messages is written to the console output using English as output language.

C#
// Create the object using the default configuration
//
Worker myWorker = new Worker();

try 
{ 
    // Activate the worker object
    //
    myWorker.Start();
    Console.WriteLine("The Worker object was activated successfully.");

    // Set the second filter (index 1) to pass all messages 
    //
    myWorker.SetFilteringState(1, FilteringState.PassForAll);

    // Wait for sometime to get messages in the receive queue
    //
    Console.WriteLine("Waiting for messages......");
    System.Threading.Thread.Sleep(5000);

    // Get and show the amount of messages contained in the first and second receive queues
    //
    Console.WriteLine($"There are {myWorker.GetAvailableMessagesCount()} messages in the first receive queue. ");
    Console.WriteLine($"There are {myWorker.GetAvailableMessagesCount(1)} messages in the second receive queue. ");

    // Clear the second receive queue and show the amount of messages in the queues again
    //
    myWorker.ClearReceiveQueue(1);
    Console.WriteLine($"There are {myWorker.GetAvailableMessagesCount()} messages in the first receive queue. ");
    Console.WriteLine($"There are {myWorker.GetAvailableMessagesCount(1)} messages in the second receive queue, after clearing it. ");

    // Deactivate the worker object, when it is no longer needed
    //
    myWorker.Stop();
    Console.WriteLine("The Worker object was deactivated.");
}
catch(Exception ex)
{
    Console.WriteLine($"An exception occurred by activating the Worker object. {ex.Message}");
}

Exceptions

IndexOutOfRangeExceptionThe queueIndex parameter value is out of range. This must be in the range [0...ReceiveQueuesCount-1].

See Also