C and C++ Programming Resources

Custom Search

Bank Operations using Threads in Java

Posted on September 9th, 2008 0 Comments

Bank Operation demo that uses Bank, Clerk and Account and Transaction objects to complete the operation. Actually this demo shows how you can use threads to perform the tasks intheir own capicity and utilise the maximum system resopurces. What we do is, we have two clerks and they will do the work seperately from each other hence they will work faster using threads....
Read More | Make a Comment

Client and Overlapped Server and Server and ThreadServer

Posted on September 9th, 2008 0 Comments

This program is a simple named pipe client that demonstrates the API calls needed to successfully develop a basic named pipe client application. When this application successfully connects to a named pipe, the message “This is a test” is written to the server. There are four basic steps needed to implement a client: Wait for a Named Pipe...
Read More | Make a Comment