blob: bfb70f9eed695d6acecb5c5951d35f9d8a07499e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2017 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.internal.debug.core.model.operations;
import org.eclipse.dltk.dbgp.exceptions.DbgpException;
import org.eclipse.dltk.debug.core.model.IScriptThread;
public class DbgpResumeOperation extends DbgpOperation {
private static final String JOB_NAME = Messages.DbgpResumeOperation_resumeOperation;
public DbgpResumeOperation(IScriptThread thread, IResultHandler finish) {
super(thread, JOB_NAME, finish);
}
@Override
protected void process() throws DbgpException {
callFinish(getCore().run());
}
}