()
| 665 | |
| 666 | |
| 667 | private boolean usePartial() { |
| 668 | if (Util.isControl(opCode)) { |
| 669 | return false; |
| 670 | } else if (textMessage) { |
| 671 | return textMsgHandler instanceof MessageHandler.Partial; |
| 672 | } else { |
| 673 | // Must be binary |
| 674 | return binaryMsgHandler instanceof MessageHandler.Partial; |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | |
| 679 | private boolean swallowInput() { |
no test coverage detected