Package org.jscsi.scsi.protocol.sense.exceptions

Examples of org.jscsi.scsi.protocol.sense.exceptions.OverlappedCommandsAttemptedException


            // FIXME: Is treating overlapping untagged tasks in this way actually proper?
            lock.unlock(); // we don't want to block on transport port operations
            Command command = task.getCommand();
            task.getTargetTransportPort().writeResponse(command.getNexus(),
                  command.getCommandReferenceNumber(), Status.CHECK_CONDITION,
                  ByteBuffer.wrap((new OverlappedCommandsAttemptedException(true)).encode()));
            if (_logger.isDebugEnabled())
               _logger.debug("command not accepted due to preexisting untagged task: " + task);
            return false;
         }
View Full Code Here

TOP

Related Classes of org.jscsi.scsi.protocol.sense.exceptions.OverlappedCommandsAttemptedException

Copyright © 2018 www.massapicom. 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.