This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected function lowReceive(_arg_1:IDataInput):INetworkMessage | |
{ | |
var _local_2:INetworkMessage; | |
var _local_3:uint; | |
var _local_4:uint; | |
var _local_5:uint; | |
if (!this._splittedPacket){ | |
if (_arg_1.bytesAvailable < 2){ | |
if (DEBUG_LOW_LEVEL_VERBOSE){ | |
_log.info((("Not enought data to read the header, byte available : " + _arg_1.bytesAvailable) + " (needed : 2)")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package koh.concurrency; | |
import java.util.Comparator; | |
import java.util.Iterator; | |
import java.util.Optional; | |
import java.util.Spliterator; | |
import java.util.concurrent.Callable; | |
import java.util.concurrent.ForkJoinPool; | |
import java.util.function.*; | |
import java.util.stream.*; |