Github user manuzhang commented on a diff in the pull request: https://github.com/apache/incubator-gearpump/pull/134#discussion_r97293869 --- Diff: core/src/main/scala/org/apache/gearpump/cluster/client/RunningApplication.scala --- @@ -18,17 +18,21 @@ package org.apache.gearpump.cluster.client import akka.pattern.ask -import akka.actor.ActorRef +import akka.actor.{Actor, ActorRef, ActorSystem, Props} import akka.util.Timeout -import org.apache.gearpump.cluster.ClientToMaster.{ResolveAppId, ShutdownApplication} -import org.apache.gearpump.cluster.MasterToClient.{ResolveAppIdResult, ShutdownApplicationResult} +import org.apache.gearpump.cluster.ClientToMaster.{RegisterAppResultListener, ResolveAppId, ShutdownApplication} +import org.apache.gearpump.cluster.MasterToClient._ +import org.apache.gearpump.cluster.client.RunningApplication.{AppResultListener, WaitUntilFinish} import org.apache.gearpump.util.ActorUtil +import org.apache.gearpump.cluster.client.RunningApplication._ +import scala.concurrent.duration._ import scala.concurrent.Future import scala.util.{Failure, Success} import scala.concurrent.ExecutionContext.Implicits.global -class RunningApplication(val appId: Int, master: ActorRef, timeout: Timeout) { +class RunningApplication(val appId: Int, master: ActorRef, timeout: Timeout, --- End diff -- sure
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---