Minor: rename CompilationResultSink->CompilationResults

This commit is contained in:
Alexey Tsvetkov
2017-01-13 13:06:05 +03:00
parent bdae0b5efb
commit 3d07c40887
6 changed files with 14 additions and 14 deletions
@@ -20,9 +20,9 @@ import java.io.Serializable
import java.rmi.Remote
import java.rmi.RemoteException
interface CompilationResultsSink : Remote {
interface CompilationResults : Remote {
@Throws(RemoteException::class)
fun push(compilationResultCategory: Int, value: Serializable)
fun add(compilationResultCategory: Int, value: Serializable)
}
enum class CompilationResultCategory(val code: Int) {
@@ -135,7 +135,7 @@ interface CompileService : Remote {
compilerArguments: Array<String>,
compilationOptions: CompilationOptions,
servicesFacade: CompilerServicesFacadeBase,
compilationResultsSink: CompilationResultsSink?
compilationResults: CompilationResults?
): CallResult<Int>
@Throws(RemoteException::class)