RecompileListener.java

/*
 * Copyright 2013 Google Inc.
 *
 * 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 com.google.gwt.dev.codeserver;

/**
 * A callback interface that can be used to find out when Super Dev Mode starts and
 * finishes its compiles.
 *
 * @deprecated replaced by {@link JobChangeListener}.
 */
@Deprecated
public interface RecompileListener {

  /**
   * Called when starting a compile.
   * @param moduleName The name of the module being compiled, before renaming.
   * @param compileId An id for this compile, starting from 1 for the first compile.
   *                  The combination of (moduleName, compileId) is unique within
   *                  a Code Server process. After the CodeServer is restarted, starts again from 1.
   * @param compileDir The directory used for this compile. Contains subdirectories for
   *                   working files and compiler output.
   */
  void startedCompile(String moduleName, int compileId, CompileDir compileDir);

  /**
   * Called when a compile finishes.
   * @param moduleName The same name passed to startedCompile
   * @param compileId The same id passed to startedCompile
   * @param success True if the compile succeeded.
   */
  void finishedCompile(String moduleName, int compileId, boolean success);

  /**
   * A listener that does nothing.
   */
  RecompileListener NONE = new RecompileListener() {
    @Override
    public void startedCompile(String moduleName, int compileId, CompileDir compileDir) {
    }

    @Override
    public void finishedCompile(String moduleName, int compileId, boolean success) {
    }
  };

}