How do I cancel an asynchronous operation?

C#

    Sponsored Links

    Next

  • 1. When and Where I should use MSMQ?
    Hi all, Where is the MSMQ use for? For example, I have a client program to control the database and how can I use MSMQ in my program? When I should use it? For example I have a method to insert new record to the database and how can I use MSMQ in this method?
  • 2. Question about "static class"
    I'm trying to understand what defining a class as 'static' does for me. Here's an example, because maybe I am thinking about this all wrong: My app will allows the user to control the fonts that the app uses. So I will need to change the fonts depending on what settings the user has entered. However, it seems kind of wasteful to me to go to teh registry, fetch the font information and create new font objects for every form that I am going to display. So I was thinking that perhaps the 'static' keyword held my salvation somehow. I'd like to have a clas that reads from the registry, creates the fonts, and then they are there for any of the forms to reference. Any comments on that would be greatly appreciated. Thanks, -Neil K.
  • 3. Excel Automation - code question
    I'm trying to use excel automation (from visual c# .NET) to fill data in a range by using arrays. I am using Microsoft's Knowledge Base Article 302096 as a reference and using the example listed there, but I'm having trouble with the following code: **************** Code Starts Here *********** Excel.Application m_objExcel; Excel.Workbooks m_objBooks; Excel._Workbook m_objBook; Excel.Sheets m_objSheets; Excel._Worksheet m_objSheet; Excel.Range m_objRange; m_objExcel = new Excel.Application(); m_objExcel.Visible = true; m_objBooks = (Excel.Workbooks)m_objExcel.Workbooks; m_objBook = (Excel._Workbook)m_objBooks.Add(Missing.Value); m_objSheets = (Excel.Sheets)m_objBook.Worksheets; m_objSheet = (Excel._Worksheet)(m_objSheets.get_Item(1)); m_objRange = m_objSheet.get_Range("A1", Missing.Value); m_objRange = m_objRange.get_Resize(5, 5); double[,] doubleGrid = new double[5,5]; for (int row = 0; row < 5; row++) { for (int column = 0; column < 5; column++) { doubleGrid[row,column] = row * column; } } m_objRange.set_Value(Missing.Value, doubleGrid); *************** Code Ends Here ************* Microsoft Excel opens up okay, but then the server throws an exception (in excel). I'm not able to figure out what the problem is, but I have a feeling that it's something with Range.set_Value method. Any ideas?? Thanks. Mansi
  • 4. Resolved - DataGrid column heading
    Hi Kevin, That did it! Here is the statement I used at your suggestion: psDataAdapter.Fill(psDataSet, "Table"); I need a good reference book explaining how all of this works. Thank you. Cheers, Bob -- Robert Schuldenfrei S. I. Inc. 32 Ridley Road Dedham, MA 02026 XXXX@XXXXX.COM 781/329-4828 "Kevin Yu [MSFT]" < XXXX@XXXXX.COM > wrote in message news: XXXX@XXXXX.COM ... > You're welcome, Bob. > > I forgot to mention that with the code I provided in my last post, the > table name is mapped from "Table" to "PS". So if we use > psDataAdapter.Fill(psDataSet, "PS");, the source table name is "PS". > That's > why the column is not mapped correctly. > > So could you let me know how many SELECT statements are there in the > SelectCommand? Generally, there is only one. If so, we just use > psDataAdapter.Fill(psDataSet); or psDataAdapter.Fill(psDataSet, "Table");. > That will do the mapping correctly. > > If anything is unclear, please feel free to reply to the post. > > Kevin Yu > ======= > "This posting is provided "AS IS" with no warranties, and confers no > rights." >

How do I cancel an asynchronous operation?

Postby Jacob » Sun, 28 Dec 2003 13:16:18 GMT

I'm writing a class that  communicates with a server using the TcpClient
class.  Most of the methods I've written are intended to be used
synchronously and will block until they are completed.  But these calls will
be made very seldom and between operations I would like to put the client
into a "listening mode" that will listen for other server messages.  When
the client is ready to send/receive data again, take it back out of
listening mode and again begin synchronous operations.  It's quite easy to
set up a BeginRead on the stream I created and have its callback process any
messages received from the server.  But when I want to STOP listening and
start synchronous operations again I need to be able to cancel this.  I
think the easiest way would be if I could just cancel the thread that I
started the BeginRead operation on.  I'm sure there is a way to use the
IAsyncResult or it's WaitHandle to cancel the thread, but threading is not
my strongpoint and a solution is alluding me right now.  Any assistance
would be appreciated.  Here's the skeleton of what I'm going for.

private IAsyncResult ar;

private void Listen()
{
    listenBuffer = new byte[1024];
    ar = stream.BeginRead(listenBuffer, 0, listenBuffer.Length, new
AsyncCallback(ListenMessage), this);
}


private void ListenMessage(IAsyncResult ar)
{
    // ..... interpret received message.
}


private void StopListen()
{
    // ?????? ar...
}




Any help is appreciated,
Jacob



Re: How do I cancel an asynchronous operation?

Postby Dmitriy Lapshin [C# / .NET MVP] » Tue, 30 Dec 2003 21:36:35 GMT

Jacob,


Unfortunately, cancelling the async. operations is not supported by the .NET
framework. I have recently had to write my own replacement since
cancellation was a must.

-- 
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
 http://www.**--****.com/ 
Bring the power of unit testing to VS .NET IDE


Re: How do I cancel an asynchronous operation?

Postby Jacob » Wed, 31 Dec 2003 02:42:04 GMT

Well, that answers my question.  Thanks for your help.

Jacob


"Dmitriy Lapshin [C# / .NET MVP]" < XXXX@XXXXX.COM > wrote


not
.NET



Re: How do I cancel an asynchronous operation?

Postby Chris Morse » Fri, 02 Jan 2004 14:21:58 GMT

On Mon, 29 Dec 2003 14:36:35 +0200, "Dmitriy Lapshin [C# / .NET MVP]"




I am just researching this same problem.  In my case, it's a server
socket that calls "BeginAccept()".  The MSDN doc sample "Using an
Asynchronous Server Socket" shows this code:

    try {
        listener.Bind(localEP);
        s.Listen(10);			// <-- typo in MSDN docs!

        while (true) {
            allDone.Reset();

            Console.WriteLine("Waiting for a connection...");
            listener.BeginAccept(
                new AsyncCallback(SocketListener.acceptCallback), 
                listener );

            allDone.WaitOne();
        }
    } catch (Exception e) {
        Console.WriteLine(e.ToString());
    }

An infinite loop of BeginAccept() calls is NOT what I would want in my
own server.  As I have been trying to figure out how to cancel a
"pending" BeginAccept() call, I am finding out now that it can't be
done.

It's not too big a problem for me, as my own version has a way out of
the loop and closes the server socket.  Either the server socket
closing OR the thread ending (which happens after the close) causes
the acceptCallback to be called ONCE the first time, and if I continue
hitting my server start and stop buttons, the acceptCallback will be
called TWICE everytime after that.  Strange behaviour.

So I have been trying to figure out how to cancel the pending
BeginAccept() call.  And now it seems it can't be done!

// CHRIS


Similar Threads:

1.Cancel an Asynchronous operation?

I can start an Asynchronous operation against a data source with 
SQLCommand.BeginExecuteReader, allowing me to loop, checking for user 
cancellation before the operation has completed, but how then to cancel the 
SQLCommand if the user wishes to?  The "Cancel" method states:

     ".......... The Cancel method cannot be used to cancel a pending 
asynchronous operation."

The scenario I'm thinking about here concerns a potentially long-running 
operation the user might start not realising how long it might take, despite 
a UI warning, then deciding to cancel it.  Because I don't know if the 
operation will take seconds or minutes, I can't set an appropriate timeout 
other than "0", which means the user must be allowed to cancel it.  Is there 
any way to stop an asynchronous operation "mid-flow" so to speak, without 
running it on a thread and aborting the thread (not a very clever thing to 
do)?  What about closing the underlying connection or generating an 
exception, will that stop the pending operation?


Robin


2.Cancel an asynchronous method call made to delegate using BeginInv

I would like to cancel a call to BeginInvoke of a delegate (i.e. kill the 
thread the call was made on). This would be done when a timeout occures for 
the waitone call to the WaitHandle object of the IAsyncResult interface 
returned by the BeginInvoke.

I have tried using the Close method of the WaitHandle object to end the call.

While I'm asking, please explain (in more detail than the MSDN Library) what 
the bool parameter of the waitOne method does.
-- 
Jeffrey Kingsley
Xerox Inovation Group
Xerox Corporation

3.KB192570 done right: Asynchronous sockets in threads

4.Newbie question on performing/handling Asynchronous operations..

Hi,

   I have a dotnet form that basically writes to the webserver when a
button is clicked. Now based on the amount of data, the writing could
take about 5-10 minutes.

   I was wondering if there was a way for me to post a message back to
the user
as soon as the button is clicked and then have the webserver continue
to perform the operation. This way the user gets an immediate repsonse
saying that teh operationis being performed and does'nt have to wait
that long. This will also take care of potential timeout situations.

   Can someone give me some examples/ code snippets/links that will
help me out
if it indeed is possible. Please rememberthat I am new at this, so the
more
info the better and the more code with explanation the better.


  Regards,

DrD

5.asynchronous socket operations - question

I have a question about C#. How can I stop asynchronous read/write operation
( BeginReceive() / BeginSend() ) if timeout occurs?
The Socket class doesn't make any cancel method available.
I used CancelIo(HANDLE hFile) method (declared in Winbase.h) in C++.

Thanks for help.
Olek


6. asynchronous operations on objects

7. System.ComponentModel.Win32Exception: The operation was canceled by the user System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPrint

8. Cancel a pending async operation?



Return to C#

 

Who is online

Users browsing this forum: No registered users and 39 guest