summaryrefslogtreecommitdiff
path: root/test/disabled/presentation/akka/src/akka/actor/package.scala
blob: fbeeed49cb083b25f4e60857212e86b18dc82853 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * Copyright (C) 2009-2011 Scalable Solutions AB <http://scalablesolutions.se>
 */

package akka

import actor.{ ScalaActorRef, ActorRef }

package object actor {
  implicit def actorRef2Scala(ref: ActorRef): ScalaActorRef =
    ref.asInstanceOf[ScalaActorRef]

  implicit def scala2ActorRef(ref: ScalaActorRef): ActorRef =
    ref.asInstanceOf[ActorRef]

  type Uuid = com.eaio.uuid.UUID

  def newUuid(): Uuid = new Uuid()

  def uuidFrom(time: Long, clockSeqAndNode: Long): Uuid = new Uuid(time, clockSeqAndNode)

  def uuidFrom(uuid: String): Uuid = new Uuid(uuid)
}