private Object decode0(IoBuffer buffer, MemcachedTCPSession session) {
   if (session.getCurrentCommand().decode(session, buffer.buf())) {
     final Command command = session.getCurrentCommand();
     session.setCurrentCommand(null);
     return command;
   }
   return null;
 }