Skip to content

Commit f5f5cd8

Browse files
Renamed NGDefaultLifebeatThread to NGLifebeatThreadRunner
1 parent 146f51c commit f5f5cd8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ng-appserver/src/main/java/ng/appserver/wointegration/NGDefaultLifeBeatThread.java renamed to ng-appserver/src/main/java/ng/appserver/wointegration/NGLifebeatThreadRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Created as a temporary holder class for the LifeBeatThread, just to get it out of NGApplication // Hugi 2022-04-18
1111
*/
1212

13-
public class NGDefaultLifeBeatThread {
13+
public class NGLifebeatThreadRunner {
1414

1515
private static NGLifebeatThread _lifebeatThread;
1616

ng-appserver/src/main/java/ng/appserver/wointegration/NGWOIntegrationPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class NGWOIntegrationPlugin implements NGPlugin {
2020
public void load( NGApplication application ) {
2121

2222
if( application.properties().d().propWOLifebeatEnabled() ) {
23-
NGDefaultLifeBeatThread.start( application.properties() );
23+
NGLifebeatThreadRunner.start( application.properties() );
2424
}
2525

2626
// What we're doing here is allowing for the WO URL structure, which is required for us to work with the WO Apache Adaptor.

ng-appserver/src/main/java/ng/appserver/wointegration/WOMPRequestHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private static NGResponse terminate() {
6565
logger.info( "Terminating application by request from wotaskd..." );
6666

6767
logger.info( "Sending willStop..." );
68-
NGDefaultLifeBeatThread.lifebeatThread().sendWillStop();
68+
NGLifebeatThreadRunner.lifebeatThread().sendWillStop();
6969
logger.info( "Sent willstop." );
7070

7171
// We perform the shutdown in a thread that executes after we've returned the response to the client.

0 commit comments

Comments
 (0)