public ICompletes <T> ActorOf <T>(Address address) => directoryScanner.ActorOf <T>(address);
/// <summary> /// Answers the <c>ICompletes<T></c> that will eventually complete with the <typeparamref name="T"/> protocol /// of the backing <c>Actor</c> of the given <paramref name="address"/>, or <c>null</c> if not found. /// </summary> /// <typeparam name="T">The protocol supported by the backing <c>Actor</c>.</typeparam> /// <param name="address">The <c>IAddress</c> of the <c>Actor</c> to find.</param> /// <returns>ICompletes<T> of the backing actor found by the address. <c>null</c> if not found.</returns> public ICompletes <T> ActorOf <T>(IAddress address) => directoryScanner.ActorOf <T>(address).AndThen(default(T), proxy => proxy);