Examples of TargetTaskFactory


Examples of org.jscsi.scsi.tasks.target.TargetTaskFactory

   // constructor(s)

   public DefaultTaskRouter()
   {
      this.logicalUnitMap = new ConcurrentHashMap<Long, LogicalUnit>();
      this.taskFactory = new TargetTaskFactory(this.logicalUnitMap.keySet());
      this.targetTaskSet = new DefaultTaskSet(DEFAULT_TARGET_QUEUE_LENGTH);
      this.targetTaskManager = new DefaultTaskManager(DEFAULT_TARGET_THREAD_COUNT, targetTaskSet);
   }
View Full Code Here

Examples of org.jscsi.scsi.tasks.target.TargetTaskFactory

   }

   public DefaultTaskRouter(int targetQueueLength, int targetThreadCount)
   {
      this.logicalUnitMap = new ConcurrentHashMap<Long, LogicalUnit>();
      this.taskFactory = new TargetTaskFactory(this.logicalUnitMap.keySet());
      this.targetTaskSet = new DefaultTaskSet(targetQueueLength);
      this.targetTaskManager = new DefaultTaskManager(targetThreadCount, targetTaskSet);
   }
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.