blob: d53fca2f59b89f7545f3706dc9ebfb301ead2c05 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation
* 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:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.internal.proxy.runtime.command;
import org.eclipse.ptp.proxy.command.AbstractProxyCommand;
import org.eclipse.ptp.proxy.runtime.command.IProxyRuntimeResumeEventsCommand;
/**
* Command class for RESUME_EVENTS command. This command is used in proxy flow
* control to indicate the proxy may resume sending event notifications to the
* proxy
*
* @author David Wootton
*
*/
public class ProxyRuntimeResumeEventsCommand extends AbstractProxyCommand
implements IProxyRuntimeResumeEventsCommand {
/**
* Create an instance of a RESUME_EVENTS command with no parameters
*/
public ProxyRuntimeResumeEventsCommand() {
super(RESUME_EVENTS);
}
}