Package net.solosky.maplefetion.net.buffer

Examples of net.solosky.maplefetion.net.buffer.ByteArrayWriter.clear()


                  if(!tryExecuteRequest("i", requestId++, writer, 1))
                    raiseException(new TransferException("Init Http Transfer failed.."));
                 
                 
                  while(!closeFlag) {
                    writer.clear();
                    BytesEntry entry = bytesEntryQueue.poll(5,TimeUnit.SECONDS);    //等待五秒,如果没有元素也返回
                    if(entry!=null) {
                      writer.writeBytes(entry.getBytes(), entry.getOffset(), entry.getLength())//
                      while(bytesEntryQueue.size()>0) {
                        entry = bytesEntryQueue.poll();
View Full Code Here


                        }
                  }
                 
                 
                  //结束
                  writer.clear();
                  writer.write("SIPP".getBytes());
                  tryExecuteRequest("d", requestId++, writer, 1);
                 
              }catch(Throwable e) {
                raiseException(new TransferException(e));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.