Search:

Type: Posts; User: Cornix

Search: Search took 0.08 seconds.

  1. Replies
    5
    Views
    1,318

    Re: Handling IO Synchronization

    If the API says that its safe against concurrent modification exceptions / save for multithreading then yes. But linked lists are usually slower then array lists in most circumstances.
  2. Replies
    5
    Views
    1,318

    Re: Handling IO Synchronization

    I would advice you to use a collection that does not throw concurrent modification exceptions when working with multithreading. For example the CopyOnWriteArrayList for the queue of write requests....
Results 1 to 2 of 2