view dwtx/core/internal/jobs/JobChangeEvent.d @ 122:9d0585bcb7aa

Add core.jobs package
author Frank Benoit <benoit@tionex.de>
date Tue, 12 Aug 2008 02:34:21 +0200
parents
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2003, 2005 IBM Corporation and others.
 * 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 - Initial API and implementation
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwtx.core.internal.jobs.JobChangeEvent;

import dwt.dwthelper.utils;

import dwtx.core.runtime.IStatus;
import dwtx.core.runtime.jobs.IJobChangeEvent;
import dwtx.core.runtime.jobs.Job;

public class JobChangeEvent : IJobChangeEvent {
    /**
     * The job on which this event occurred.
     */
    Job job = null;
    /**
     * The result returned by the job's run method, or <code>null</code> if
     * not applicable.
     */
    IStatus result = null;
    /**
     * The amount of time to wait after scheduling the job before it should be run,
     * or <code>-1</code> if not applicable for this type of event.
     */
    long delay = -1;
    /**
     * Whether this job is being immediately rescheduled.
     */
    bool reschedule = false;

    /* (non-Javadoc)
     * Method declared on IJobChangeEvent
     */
    public long getDelay() {
        return delay;
    }

    /* (non-Javadoc)
     * Method declared on IJobChangeEvent
     */
    public Job getJob() {
        return job;
    }

    /* (non-Javadoc)
     * Method declared on IJobChangeEvent
     */
    public IStatus getResult() {
        return result;
    }
}