Package akka.actor
Class DynamicAccess
- java.lang.Object
-
- akka.actor.DynamicAccess
-
- Direct Known Subclasses:
ReflectiveDynamicAccess
public abstract class DynamicAccess extends java.lang.Object
The DynamicAccess implementation is the class which is used for loading all configurable parts of an actor system (theReflectiveDynamicAccess
is the default implementation).This is an internal facility and users are not expected to encounter it unless they are extending Akka in ways which go beyond simple Extensions.
Not for user extension
-
-
Constructor Summary
Constructors Constructor Description DynamicAccess()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract boolean
classIsOnClasspath(java.lang.String fqcn)
abstract java.lang.ClassLoader
classLoader()
This is the class loader to be used in those special cases where the other factory method are not applicable (e.g.abstract <T> scala.util.Try<T>
createInstanceFor(java.lang.Class<?> clazz, scala.collection.immutable.Seq<scala.Tuple2<java.lang.Class<?>,java.lang.Object>> args, scala.reflect.ClassTag<T> evidence$1)
Convenience method which given aClass[_]
object and a constructor description will create a new instance of that class.abstract <T> scala.util.Try<T>
createInstanceFor(java.lang.String fqcn, scala.collection.immutable.Seq<scala.Tuple2<java.lang.Class<?>,java.lang.Object>> args, scala.reflect.ClassTag<T> evidence$3)
Obtain an object conforming to the type T, which is expected to be instantiated from a class designated by the fully-qualified class name given, where the constructor is selected and invoked according to theargs
argument.abstract <T> scala.util.Try<java.lang.Class<? extends T>>
getClassFor(java.lang.String fqcn, scala.reflect.ClassTag<T> evidence$2)
Obtain aClass[_]
object loaded with the right class loader (i.e.abstract <T> scala.util.Try<T>
getObjectFor(java.lang.String fqcn, scala.reflect.ClassTag<T> evidence$4)
Obtain the Scala “object” instance for the given fully-qualified class name, if there is one.
-
-
-
Method Detail
-
classIsOnClasspath
public abstract boolean classIsOnClasspath(java.lang.String fqcn)
-
classLoader
public abstract java.lang.ClassLoader classLoader()
This is the class loader to be used in those special cases where the other factory method are not applicable (e.g. when constructing a ClassLoaderBinaryInputStream).
-
createInstanceFor
public abstract <T> scala.util.Try<T> createInstanceFor(java.lang.Class<?> clazz, scala.collection.immutable.Seq<scala.Tuple2<java.lang.Class<?>,java.lang.Object>> args, scala.reflect.ClassTag<T> evidence$1)
Convenience method which given aClass[_]
object and a constructor description will create a new instance of that class.val obj = DynamicAccess.createInstanceFor(clazz, Seq(classOf[Config] -> config, classOf[String] -> name))
-
createInstanceFor
public abstract <T> scala.util.Try<T> createInstanceFor(java.lang.String fqcn, scala.collection.immutable.Seq<scala.Tuple2<java.lang.Class<?>,java.lang.Object>> args, scala.reflect.ClassTag<T> evidence$3)
Obtain an object conforming to the type T, which is expected to be instantiated from a class designated by the fully-qualified class name given, where the constructor is selected and invoked according to theargs
argument. The exact usage of args depends on which type is requested, see the relevant requesting code for details.
-
getClassFor
public abstract <T> scala.util.Try<java.lang.Class<? extends T>> getClassFor(java.lang.String fqcn, scala.reflect.ClassTag<T> evidence$2)
Obtain aClass[_]
object loaded with the right class loader (i.e. the one returned byclassLoader
).
-
getObjectFor
public abstract <T> scala.util.Try<T> getObjectFor(java.lang.String fqcn, scala.reflect.ClassTag<T> evidence$4)
Obtain the Scala “object” instance for the given fully-qualified class name, if there is one.
-
-