Lines Matching refs:nextPhase

59   private Phase nextPhase = currentPhase;  field in NonblockingSaslHandler
123 return nextPhase; in getNextPhase()
147 return currentPhase != nextPhase; in isCurrentPhaseDone()
185 if (isCurrentPhaseDone() && nextPhase.selectionInterest == interestOps) { in handleOps()
202 LOGGER.debug("Switch phase {} to {}", currentPhase, nextPhase); in stepToNextPhase()
203 switch (nextPhase) { in stepToNextPhase()
210 if (!(nextPhase.selectionInterest == currentPhase.selectionInterest || in stepToNextPhase()
211 nextPhase.selectionInterest == selectionKey.interestOps())) { in stepToNextPhase()
212 changeSelectionInterest(nextPhase.selectionInterest); in stepToNextPhase()
214 currentPhase = nextPhase; in stepToNextPhase()
227 nextPhase = Phase.WRITING_FAILURE_MESSAGE; in failSaslNegotiation()
232 nextPhase = Phase.CLOSING; in fail()
244 nextPhase = Phase.CLOSING; in failIO()
260 nextPhase = Phase.READING_SASL_RESPONSE; in handleInitializing()
273 nextPhase = Phase.EVALUATING_SASL_RESPONSE; in handleReadingSaslResponse()
286 nextPhase = Phase.PROCESSING; in handleReadingRequest()
308 nextPhase = Phase.WRITING_SUCCESS_MESSAGE; in executeEvaluatingSaslResponse()
311 nextPhase = Phase.WRITING_SASL_CHALLENGE; in executeEvaluatingSaslResponse()
340 nextPhase = Phase.READING_REQUEST; in executeProcessing()
349 nextPhase = Phase.WRITING_RESPONSE; in executeProcessing()
364 nextPhase = Phase.READING_SASL_RESPONSE; in handleWritingSaslChallenge()
378 nextPhase = Phase.READING_REQUEST; in handleWritingSuccessMessage()
389 nextPhase = Phase.CLOSING; in handleWritingFailureMessage()
401 nextPhase = Phase.READING_REQUEST; in handleWritingResponse()
423 nextPhase = Phase.CLOSED; in close()
518 throw new IllegalStateException("State machine should step into " + statemachine.nextPhase); in runStateMachine()