I have a linked list samples:
samples
protected LinkedList samples = new LinkedList();
I\'m append
LinkedList is not thread safe. You'd have to do the locking yourself.
Try ConcurrentLinkedQueue or LinkedBlockingDeque instead if it fits your needs, they are thread safe but slightly different behavior than LinkedList.