I have an ASP.NET WebForms application and I need to create an event to run on specific times.
The event is about sending emails.
I think I read somewhere about IIS to download the application from memory when it reaches certain tim...
I'm working on a situation that requires the use of multiprocessing.
I need to read files and a bunch of processes that can take some time. During this process, I want to display a sort of window to user (Aguarde...) without compromisi...
Good morning,
I'm having a problem with a project involving Threads, I'm starting to mess with Threads now in a college job and I'm having doubts about Thread being in WAINTING state but not waking up even with the call from a "notifyAll", I...
I'm trying to implement Threads in my algorithm, but when I add and run my software the Windows Form of it hangs and does not take any action, can you see something wrong in the code below?
I know there is Async/Await to be...
I have the following code:
proxy_hom_recepcionarLoteRps.RecepcionarLoteRPS proxy = new
proxy_hom_recepcionarLoteRps.RecepcionarLoteRPS();
proxy.Url = url + "/arecepcionarloterps";
string resp = proxy.Execute(CABECALHO, xmlEnvio);
Execute...
What's the difference in calling a function in the following ways:
The first way to create a thread.
Example:
DWORD WINAPI Metodo1(LPVOID)
{
// Meu código aqui...
return NULL;
}
int WINAPI DllMain(HMODULE hModule, DWORD dwReaso...
I am trying to implement the problem of readers and writers in Java, and for this I am based on the method used by Tanenbaum in the book of Operating Systems. With only one thread writer and one thread reader the program works fine, the problem...
Hello, I have a problem with my code. I'm doing a function that lasts about 3/4 hours in length, and so I decided to do that function on a thread so it does not block the overall system operation. after some research I found some solutions and t...
I'm using pthread.h and using the following functions:
//
// Cria A thread
//
thread_argsPP[contthreadsPP] = contthreadsPP;
pthread_create(&threadsPP[contthreadsPP], NULL, ReceivePinPad, (void *) &thread_argsPP[cont...
I'm making an addon for nodejs. One of the functions is responsible for making parameterizations the incoming audio of the various clients. I want this parameterization done in a thread.
void buffering(const FunctionCallbackInfo<v8::Value&g...