scope = new ActorScope(UUID.randomUUID(), path, props);
// Connecting scope with dispatcher
mailboxesDispatcher.connectScope(scope);
// Sending initial message for creating actor
mailboxesDispatcher.getQueue().putToQueue(new Envelope(StartActor.INSTANCE, scope.getMailbox(), null), ActorTime.currentTime());
// Saving actor in collection
actors.put(path, scope);
return scope.getActorRef();