CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    44

    Server refreshes clients

    Okay , this is a different kind of question

    Suppose a server has connections to 5000 clients,
    and it has sent them data . How does the server keep track of which clients to refresh when new data arrives .. or more specifically how do the clients know that the server has new data without the server clogging the network , i.e without sending any message....

    I know there is a solution by the clients hooking onto events , but any information , url , would be greatly , deeply appreciated!




  2. #2
    Join Date
    Jun 1999
    Posts
    315

    Re: Server refreshes clients

    well you'll need to use the network to notify of new data, whether it's the clients checking periodically to see if there's new data, or if the server announces it has new data.

    miked

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured