Search in sources :

Example 1 with ThreadDump

use of net.openhft.chronicle.core.threads.ThreadDump in project Chronicle-Queue by OpenHFT.

the class SingleChronicleQueueTest method before.

@Before
public void before() {
    threadDump = new ThreadDump();
    threadDump.ignore(StoreComponentReferenceHandler.THREAD_NAME);
    exceptionKeyIntegerMap = Jvm.recordExceptions();
}
Also used : ThreadDump(net.openhft.chronicle.core.threads.ThreadDump)

Example 2 with ThreadDump

use of net.openhft.chronicle.core.threads.ThreadDump in project Chronicle-Queue by OpenHFT.

the class ToEndTest method before.

@Before
public void before() {
    threadDump = new ThreadDump();
    threadDump.ignore(StoreComponentReferenceHandler.THREAD_NAME);
    exceptionKeyIntegerMap = Jvm.recordExceptions();
}
Also used : ThreadDump(net.openhft.chronicle.core.threads.ThreadDump) Before(org.junit.Before)

Example 3 with ThreadDump

use of net.openhft.chronicle.core.threads.ThreadDump in project Chronicle-Queue by OpenHFT.

the class MessageReaderWriterTest method threadDump.

@Before
public void threadDump() {
    threadDump = new ThreadDump();
    threadDump.ignore(StoreComponentReferenceHandler.THREAD_NAME);
}
Also used : ThreadDump(net.openhft.chronicle.core.threads.ThreadDump) Before(org.junit.Before)

Example 4 with ThreadDump

use of net.openhft.chronicle.core.threads.ThreadDump in project Chronicle-Queue by OpenHFT.

the class ThreadedQueueTest method threadDump.

@Before
public void threadDump() {
    threadDump = new ThreadDump();
    threadDump.ignore(StoreComponentReferenceHandler.THREAD_NAME);
}
Also used : ThreadDump(net.openhft.chronicle.core.threads.ThreadDump) Before(org.junit.Before)

Example 5 with ThreadDump

use of net.openhft.chronicle.core.threads.ThreadDump in project Chronicle-Queue by OpenHFT.

the class SingleCQFormatTest method threadDump.

@Before
public void threadDump() {
    threadDump = new ThreadDump();
    threadDump.ignore(StoreComponentReferenceHandler.THREAD_NAME);
}
Also used : ThreadDump(net.openhft.chronicle.core.threads.ThreadDump) Before(org.junit.Before)

Aggregations

ThreadDump (net.openhft.chronicle.core.threads.ThreadDump)10 Before (org.junit.Before)8