Java Code Examples for java.util.concurrent.ConcurrentSkipListSet#clear()
The following examples show how to use
java.util.concurrent.ConcurrentSkipListSet#clear() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ConcurrentSkipListSetTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * clear removes all elements */ public void testClear() { ConcurrentSkipListSet q = populatedSet(SIZE); q.clear(); assertTrue(q.isEmpty()); assertEquals(0, q.size()); q.add(new Integer(1)); assertFalse(q.isEmpty()); q.clear(); assertTrue(q.isEmpty()); }
Example 2
Source File: ConcurrentSkipListSetTest.java From j2objc with Apache License 2.0 | 5 votes |
/** * clear removes all elements */ public void testClear() { ConcurrentSkipListSet q = populatedSet(SIZE); q.clear(); assertTrue(q.isEmpty()); assertEquals(0, q.size()); q.add(new Integer(1)); assertFalse(q.isEmpty()); q.clear(); assertTrue(q.isEmpty()); }
Example 3
Source File: DefaultLocalQueue.java From SeimiCrawler with Apache License 2.0 | 4 votes |
@Override public void clearRecord(String crawlerName) { ConcurrentSkipListSet<String> set = getProcessedSet(crawlerName); set.clear(); }