All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vlingo.lattice.model.projection.ProjectionControl__Proxy Maven / Gradle / Ivy

Go to download

Tooling for reactive Domain-Driven Design projects that are highly concurrent. Includes compute grid, actor caching, spaces, cross-node cluster messaging, CQRS, and Event Sourcing support.

There is a newer version: 1.7.5
Show newest version
// Copyright © 2012-2020 VLINGO LABS. All rights reserved.
//
// This Source Code Form is subject to the terms of the
// Mozilla Public License, v. 2.0. If a copy of the MPL
// was not distributed with this file, You can obtain
// one at https://mozilla.org/MPL/2.0/.

package io.vlingo.lattice.model.projection;

import io.vlingo.actors.Actor;
import io.vlingo.actors.ActorProxyBase;
import io.vlingo.actors.DeadLetter;
import io.vlingo.actors.LocalMessage;
import io.vlingo.actors.Mailbox;
import io.vlingo.common.SerializableConsumer;

public class ProjectionControl__Proxy extends ActorProxyBase implements io.vlingo.lattice.model.projection.ProjectionControl {

  private static final String confirmProjectedRepresentation1 = "confirmProjected(java.lang.String)";

  private final Actor actor;
  private final Mailbox mailbox;

  public ProjectionControl__Proxy(final Actor actor, final Mailbox mailbox){
    super(io.vlingo.lattice.model.projection.ProjectionControl.class, actor.getClass(), actor.address());
    this.actor = actor;
    this.mailbox = mailbox;
  }

  public ProjectionControl__Proxy(){
    super();
    this.actor = null;
    this.mailbox = null;
  }

  @Override
  public void confirmProjected(java.lang.String arg0) {
    if (!actor.isStopped()) {
      ActorProxyBase self = this;
      final SerializableConsumer consumer = (actor) -> actor.confirmProjected(ActorProxyBase.thunk(self, (Actor)actor, arg0));
      if (mailbox.isPreallocated()) { mailbox.send(actor, ProjectionControl.class, consumer, null, confirmProjectedRepresentation1); }
      else { mailbox.send(new LocalMessage(actor, ProjectionControl.class, consumer, confirmProjectedRepresentation1)); }
    } else {
      actor.deadLetters().failedDelivery(new DeadLetter(actor, confirmProjectedRepresentation1));
    }
  }

  @Override
  public Confirmer confirmerFor(io.vlingo.lattice.model.projection.Projectable projectable) {
    return () -> this.confirmProjected(projectable.projectionId());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy