extract duplicate code into method (#8720)
Motivation: Clean up code to increase readability. Modification: Extract duplicate code blocks into method. Result: Less code duplication
This commit is contained in:
parent
ddc9f8bf1d
commit
ae1340fd72
@ -576,20 +576,9 @@ public abstract class SingleThreadEventExecutor extends AbstractScheduledEventEx
|
||||
gracefulShutdownQuietPeriod = unit.toNanos(quietPeriod);
|
||||
gracefulShutdownTimeout = unit.toNanos(timeout);
|
||||
|
||||
if (oldState == ST_NOT_STARTED) {
|
||||
try {
|
||||
doStartThread();
|
||||
} catch (Throwable cause) {
|
||||
STATE_UPDATER.set(this, ST_TERMINATED);
|
||||
terminationFuture.tryFailure(cause);
|
||||
|
||||
if (!(cause instanceof Exception)) {
|
||||
// Also rethrow as it may be an OOME for example
|
||||
PlatformDependent.throwException(cause);
|
||||
}
|
||||
if (ensureThreadStarted(oldState)) {
|
||||
return terminationFuture;
|
||||
}
|
||||
}
|
||||
|
||||
if (wakeup) {
|
||||
wakeup(inEventLoop);
|
||||
@ -639,20 +628,9 @@ public abstract class SingleThreadEventExecutor extends AbstractScheduledEventEx
|
||||
}
|
||||
}
|
||||
|
||||
if (oldState == ST_NOT_STARTED) {
|
||||
try {
|
||||
doStartThread();
|
||||
} catch (Throwable cause) {
|
||||
STATE_UPDATER.set(this, ST_TERMINATED);
|
||||
terminationFuture.tryFailure(cause);
|
||||
|
||||
if (!(cause instanceof Exception)) {
|
||||
// Also rethrow as it may be an OOME for example
|
||||
PlatformDependent.throwException(cause);
|
||||
}
|
||||
if (ensureThreadStarted(oldState)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (wakeup) {
|
||||
wakeup(inEventLoop);
|
||||
@ -865,6 +843,24 @@ public abstract class SingleThreadEventExecutor extends AbstractScheduledEventEx
|
||||
}
|
||||
}
|
||||
|
||||
private boolean ensureThreadStarted(int oldState) {
|
||||
if (oldState == ST_NOT_STARTED) {
|
||||
try {
|
||||
doStartThread();
|
||||
} catch (Throwable cause) {
|
||||
STATE_UPDATER.set(this, ST_TERMINATED);
|
||||
terminationFuture.tryFailure(cause);
|
||||
|
||||
if (!(cause instanceof Exception)) {
|
||||
// Also rethrow as it may be an OOME for example
|
||||
PlatformDependent.throwException(cause);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private void doStartThread() {
|
||||
assert thread == null;
|
||||
executor.execute(new Runnable() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user