Tagged Questions

APM generally refers to Application Performance Management. The best in class tools provide real-time access to detailed information about the performance of a system and its components (including transaction tracing, database and external system response times, etc.)

learn more… | top users | synonyms

10
votes
3answers
535 views

What are the reasons why the CPU usage doesn’t go 100% with C# and APM?

I have an application which is CPU intensive. When the data is processed on a single thread, the CPU usage goes to 100% for many minutes. So the performance of the application appears to be bound by ...
4
votes
3answers
105 views

What resources do blocked threads take-up

One of the main purposes of writing code in the asynchronous programming model (more specifically - using callbacks instead of blocking the thread) is to minimize the number of blocking threads in the ...
2
votes
4answers
419 views

Waiting on an IAsyncResult method that waits on another IAsyncResult (Chaining)

(can only use .NET 3.5 stock, so no Tasks, no Reactive Extensions) I have, what I thought to be a simple case, but I'm baffled at it. The short of it is that, I'm returning BeginGetRequestStream's ...
2
votes
2answers
486 views

C# APM with Callback Tutorial

Even with my Googling powers I cannot seem to find a good example of the Asynchronous Programming Model with a callback delegate. It is easy for me to point someone to a resource for how to use the ...
2
votes
3answers
599 views

Why use the APM instead of using a separate thread?

If I want to read or write a file I could use stream.BeginRead and stream.EndRead, but that requires callbacks and a LOT of ugly, complicated code using the asynchronous programming model. Why would ...
1
vote
4answers
145 views

Application performance management for PHP application

I am looking for an application performance management for PHP (see http://en.wikipedia.org/wiki/Application_performance_management) This tool could be plugged to any php application in production, ...
1
vote
2answers
145 views

How to kill off a pending APM operation

If you have a pending operation, eg stream.BeginRead(_buffer, 0, _buffer.Length, _asyncCallbackRead, this); and you close the stream provider, eg serialPort.Close(); you unsurprisingly cause an ...
0
votes
1answer
52 views

Error on reconnect with SocketAsyncEventArgs : Only one usage of each socket address is normally permitted

When I tried to reestablish a connection to my Socket I get the following error : Error : Only one usage of each socket address (protocol/network address/port) is normally permitted SocketErrorCode : ...
0
votes
2answers
42 views

What techniques may I use for mocking interactions with TaskFactory.FromAsync()?

I am attempting to unit test the interactions of my application and the asynchronous HttpWebRequest methods and am wondering how to simulate the call of the asynchronous callback. For instance, ...
0
votes
0answers
90 views

C++ Power Management - ACPI or APM for listening Sleep Events

I've been reading about power management, I did find good information regarding APM in windows and how to develop with the API en C++. However for ACPI I didn't find out anything concrete (sample ...
0
votes
0answers
102 views

Task.Factory.FromAsync never calls the end method

I'm kind of stumped and have been staring/debugging this code for hours now. In my service I have - var task = Task.Factory.FromAsync( AnotherService.BeginMethod(arg1, null null), ...
0
votes
1answer
445 views

WebRequest- retrieving data asynchronously for multiple requests

The code is not complete (It does not build), as I am not able to get the "item" in the following line in the WriteResponseData(). HttpWebResponse WebResp = ...
0
votes
1answer
42 views

Aynchronous WebService call

I have ASP.NET website, and it calls the asmx web-service to do some operation asynchronously _service.Beginxxx(request, null, null); which will run in separate thread (created by thread pool), ...
0
votes
2answers
628 views

Converting Asynchronous Programming Model (Begin/End methods) into event-based asynchronous model?

Let's say I have code that uses the Asynchronous Programming Model, i.e. it provides the following methods as a group which can be used synchronously or asynchronously: public MethodResult ...
0
votes
1answer
117 views

What would be a good naming guideline to use in Asynchronous Programming Model?

I am doing some refactoring on a piece of code to transform all blocking operations to their async counterparts. My code is in C# and is doing an UPnP query followed by an HTTP query. For this, I use ...