newbie: How should I program this?

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

Hey

Users should be able to log to this program via internet and
choose to start processes (they instanciate a class within the program)...
These processes can run for several days... and many more users can at any
moment log in and join the process.. (I mean they join the process by
instancing a class inside this process)... many processes can be running at
the same time...

- These processes ( the class the user logs in and instaciate) should be
able to run after the user whom instanciated it have logged out.. These
processes should have the abillity to selfdestruct (initiated from a timer
within the class)

- When the user logs in to the program he should have the option of creating
a process or join an already running process

- These processes don't need access to the filesystem

- The main task og these processes is to manage the classes within it

Suggested solution:
The solution I'm thinking about is to create a class inherited from a
collection class. This class has handle to all classes instanciated by user.
Each of these classes are also inherit from a collection class, because they
needs to have a handle to all the objects which is created within the
class..

I know it's hard for you to give any good advice based on this info, but I'm
wondering if you had some tips about my suggested solution (see above). For
example is there a class in the .Net framework which is more suited for the
taskthan the collection class? or is there a specific part of the .net
documentation you will suggest that I read.... please mention it to me...

Jeff
 
Back
Top