Skip to content

Instantly share code, notes, and snippets.

View SharpMan's full-sized avatar
🚩
Layer 8

Ismail K SharpMan

🚩
Layer 8
View GitHub Profile
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)"));
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.*;