/*
* $Id: StartWorkExecutor.java 21939 2011-05-18 13:32:09Z aperepel $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
/**
*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mule.work;
import org.mule.api.work.WorkExecutor;
import org.mule.util.concurrent.Latch;
import java.util.concurrent.Executor;
import javax.resource.spi.work.WorkException;
public class StartWorkExecutor implements WorkExecutor
{
public void doExecute(WorkerContext work, Executor executor) throws WorkException, InterruptedException
{
Latch latch = work.provideStartLatch();
executor.execute(work);
latch.await();
}
}