io.quarkus.dev.spi.RemoteDevState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-development-mode-spi Show documentation
Show all versions of quarkus-development-mode-spi Show documentation
SPI classes for Quarkus Development mode.
package io.quarkus.dev.spi;
import java.io.Serializable;
import java.util.Map;
public class RemoteDevState implements Serializable {
final Map fileHashes;
final Throwable throwable;
public RemoteDevState(Map fileHashes, Throwable throwable) {
this.fileHashes = fileHashes;
this.throwable = throwable;
}
public Map getFileHashes() {
return fileHashes;
}
public Throwable getAugmentProblem() {
return throwable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy