Example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client.v2 ReactorUtils DUMP_STACK_ON_TIMEOUT

List of usage examples for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client.v2 ReactorUtils DUMP_STACK_ON_TIMEOUT

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client.v2 ReactorUtils DUMP_STACK_ON_TIMEOUT.

Prototype

boolean DUMP_STACK_ON_TIMEOUT

To view the source code for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client.v2 ReactorUtils DUMP_STACK_ON_TIMEOUT.

Click Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.dash.test.CloudFoundryClientTest.java

@Before
public void setup() {
    ReactorUtils.DUMP_STACK_ON_TIMEOUT = true;
}

From source file:org.springframework.ide.eclipse.boot.dash.test.CloudFoundryClientTest.java

@After
public void teardown() throws Exception {
    appHarness.dispose(); //apps first because services still bound to apps can't be deleted!
    services.dispose();/*from  w w w  .j  ava2  s .c o m*/
    if (client != null) {
        client.logout();
    }
    StsTestUtil.cleanUpProjects();
    ReactorUtils.DUMP_STACK_ON_TIMEOUT = false;
}