org.digimead.digi.ctrl.lib

AnyBase

object AnyBase extends Logging

Linear Supertypes
Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. AnyBase
  2. Logging
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class Info(reportPathInternal: File, reportPathExternal: File, appVersion: String, appBuild: String, appPackage: String, phoneModel: String, androidVersion: String, write: Boolean) extends Product with Serializable

  2. sealed trait ShutdownState extends AnyRef

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object Info extends Serializable

  7. object Shutdown extends AnyRef

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. def deinit(context: Context): Unit

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  14. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  15. def getContext(): Option[Context]

  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. val info: SyncVar[Option[Info]]

  18. def init(context: Context, stackTraceOnUnknownContext: Boolean = true): Unit

  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def isLastContext(): Boolean

  21. implicit val log: RichLogger

    Attributes
    protected[lib]
    Definition Classes
    Logging
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def preventShutdown(activity: Activity): Unit

  26. val previousPriority: Int

  27. def runOnUiThread(f: ⇒ Any): Unit

  28. def shutdownApp(packageName: String, safely: Boolean): Unit

    Shutdown the app either safely or quickly.

    Shutdown the app either safely or quickly. The app is killed safely by killing the virtual machine that the app runs in after finalizing all Objects created by the app. The app is killed quickly by abruptly killing the process that the virtual machine that runs the app runs in without finalizing all Objects created by the app. Whether the app is killed safely or quickly the app will be completely created as a new app in a new virtual machine running in a new process if the user starts the app again.

    <P> <B>NOTE:</B> The app will not be killed until all of its threads have closed if it is killed safely. </P>

    <P> <B>NOTE:</B> All threads running under the process will be abruptly killed when the app is killed quickly. This can lead to various issues related to threading. For example, if one of those threads was making multiple related changes to the database, then it may have committed some of those changes but not all of those changes when it was abruptly killed. </P>

    safely

    Primitive boolean which indicates whether the app should be exited safely or quickly killed. If true then the app will be exited safely. Otherwise it will be killed quickly.

    Annotations
    @Loggable()
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. def toString(): String

    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Logging

Inherited from AnyRef

Inherited from Any