blob: 3b25de6625a525118f9ad1056a6e075e48ac505c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.core.internal.utility.command;
import org.eclipse.jpt.common.core.utility.command.JobCommand;
import org.eclipse.jpt.common.utility.command.CommandExecutor;
import org.eclipse.jpt.common.utility.command.StatefulCommandExecutor;
import org.eclipse.jpt.common.utility.internal.command.SingleUseQueueingCommandExecutor;
/**
* This command executor wraps and extends a {@link SingleUseQueueingCommandExecutor},
* adding support for executing {@link JobCommand}s.
*/
public class SingleUseQueueingJobCommandExecutor
extends AbstractSingleUseQueueingJobCommandExecutor<SingleUseQueueingCommandExecutor, StatefulCommandExecutor>
{
public SingleUseQueueingJobCommandExecutor() {
this(new SingleUseQueueingCommandExecutor());
}
public SingleUseQueueingJobCommandExecutor(CommandExecutor commandExecutor) {
this(new SingleUseQueueingCommandExecutor(commandExecutor));
}
public SingleUseQueueingJobCommandExecutor(StatefulCommandExecutor commandExecutor) {
this(new SingleUseQueueingCommandExecutor(commandExecutor));
}
public SingleUseQueueingJobCommandExecutor(SingleUseQueueingCommandExecutor commandExecutor) {
super(commandExecutor);
}
}