Package com.impetus.labs.korus.core.executer

Source Code of com.impetus.labs.korus.core.executer.RequestExecuter

/*******************************************************************************
* Korus - http://code.google.com/p/korus
* Copyright (C) 2010 Impetus Technologies, Inc.(http://www.impetus.com)
* This file is part of Korus.
* Korus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as published
* by the Free Software Foundation (http://www.gnu.org/licenses/gpl.html)
* Korus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Korus.  If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
package com.impetus.labs.korus.core.executer;

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;

import com.impetus.labs.korus.core.process.BaseProcess;


/**
* This Class is responsible for executing the first sub-part of the Requests
* and places them in a separate queue. Thus the tasks whose some part of
* request is processed, gets priority over new tasks accepted by the system.
*
*/
public class RequestExecuter extends Thread
{

  public void run()
  {
    while (true)
    {
      // 1. Pick a Process
      BaseProcess process = getProcess();
      // 2. Execute the Process.
      process.service(process.getMessage());
    }
  }

  /**
   * Set a Process to the RequestExecuter's processQueue.
   *
   * @param process
   *            process is the smallest part of any execution.
   */
  public void setProcess(BaseProcess process)
  {
    try
    {
      processQueue.put(process);
    } catch (InterruptedException e)
    {
      e.printStackTrace();
    }
  }

  /**
   * Get a Process from the RequestExecuter's processQueue.
   *
   * @return the<code> process</code> from RequestExecuter's
   *         <code>processQueue</code>.
   */
  public BaseProcess getProcess()
  {
    try
    {
      return processQueue.take();
    } catch (InterruptedException e)
    {
      e.printStackTrace();
      return null;
    }
  }

  private BlockingQueue<BaseProcess> processQueue = new LinkedBlockingQueue<BaseProcess>();

}
TOP

Related Classes of com.impetus.labs.korus.core.executer.RequestExecuter

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.