Package org.jscsi.scsi.tasks.management

Examples of org.jscsi.scsi.tasks.management.TaskSet


public class BufferedLogicalUnit extends AbstractLogicalUnit
{
   public BufferedLogicalUnit(ByteBuffer store, int blockSize, int taskThreads, int queueDepth)
   {
      super();
      TaskSet taskSet = new DefaultTaskSet(queueDepth);
      this.setTaskSet(taskSet);
      this.setTaskManager(new DefaultTaskManager(taskThreads, taskSet));

      this.setTaskFactory(new BufferedTaskFactory(store, blockSize, new StaticModePageRegistry(),
            new StaticInquiryDataRegistry()));
View Full Code Here

TOP

Related Classes of org.jscsi.scsi.tasks.management.TaskSet

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.