Examples of message()


Examples of aQute.bnd.plugin.Activator.message()

                                                            .getAbsolutePath()
                                                            .length() + 1);
                                        String msg = "Saved as " + p;
                                        if (copy != null)
                                            msg += " and copied to " + copy;
                                        activator.message(msg);
                                    }
                                }
                            }
                            builder.close();
                        }
View Full Code Here

Examples of backtype.storm.messaging.TaskMessage.message()

      LOG.warn("Received invalid message directed at port " + task
          + ". Dropping...");
      return;
    }

    queue.publish(message.message());

  }

}
View Full Code Here

Examples of ch.softappeal.yass.core.remote.session.Packet.message()

    final Packet packet = (Packet)value;
    if (packet.isEnd()) {
      writer.writeInt(Packet.END_REQUEST_NUMBER);
    } else {
      writer.writeInt(packet.requestNumber());
      messageSerializer.write(packet.message(), writer);
    }
  }

}
View Full Code Here

Examples of com.aragost.javahg.commands.CommitCommand.message()

            }
        } else {
            CommitCommand cmd = CommitCommand.on(repo);
            cmd.user(this.rollbackChangeset.getUser());
            cmd.date(this.rollbackChangeset.getTimestamp());
            cmd.message(this.rollbackChangeset.getMessage());
            cmd.extra("source", getSource().getNode());
            return cmd.execute();
        }
    }
View Full Code Here

Examples of com.caucho.bam.ActorStream.message()

  public void message(String to, String from, Serializable value)
  {
    ActorStream stream = findActorStream(to);

    if (stream != null)
      stream.message(to, from, value);
    else {
      log.fine(this + " sendMessage to=" + to + " from=" + from
               + " is an unknown actor stream.");
    }
  }
View Full Code Here

Examples of com.caucho.bam.mailbox.Mailbox.message()

  public void message(String to, String from, Serializable payload)
  {
    Mailbox mailbox = getMailbox(to);
   
    if (mailbox != null) {
      mailbox.message(to, from, payload);
      return;
    }
   
    // on startup, queue the messages until the startup completes
    if (isBeforeActive() && addStartupPacket(new Message(to, from, payload))) {
View Full Code Here

Examples of com.caucho.bam.stream.MessageStream.message()

    }
   
    MessageStream toStream = getMailbox(to);
   
    if (toStream != null) {
      toStream.message(to, from, payload);
      return;
    }

    String msg;
    msg = (this + ": message to unknown actor"
View Full Code Here

Examples of com.caucho.env.repository.CommitBuilder.message()

      message = args.getArg("-message");

    if (message == null)
      message = L.l("copy '{0}' to '{1}'", source.getTagKey(), target.getTagKey());

    target.message(message);

    target.attribute("user", System.getProperty("user.name"));

    String targetVersion = args.getArg("-target-version");
    if (targetVersion != null)
View Full Code Here

Examples of com.foundationdb.ais.model.validation.AISValidationFailure.message()

        fail = fails.next();
        Assert.assertEquals(ErrorCode.JOIN_TO_MULTIPLE_PARENTS, fail.errorCode());
        // Failure 3: 3 joins to parent
        fail = fails.next();
        Assert.assertEquals(ErrorCode.JOIN_TO_WRONG_COLUMNS, fail.errorCode());
        Assert.assertEquals("Table `s`.`child` join reference part `nk` does not match `s`.`parent` primary key part `pk`", fail.message());
        // Failure 4: 3 joins to parent
        fail = fails.next();
        Assert.assertEquals(ErrorCode.JOIN_TO_WRONG_COLUMNS, fail.errorCode());
        Assert.assertEquals("Table `s`.`child` join reference part `uk` does not match `s`.`parent` primary key part `pk`", fail.message());
    }
View Full Code Here

Examples of com.google.apphosting.api.AppEngineInternal.message()

      AppEngineInternal anno = getAppEngineInternalAnnotation(cls);
      if (anno != null) {
        String errorMsg = String.format("Class %s loaded from %s has a dependency on class %s "
            + "loaded from %s, which is not part of App Engine's supported API.", callingClassStr,
            callingClassCodeSource, cls.getName(), cls.getProtectionDomain().getCodeSource());
        if (!anno.message().isEmpty()) {
          errorMsg += "\n" + anno.message();
        }
        if (violationIsError) {
          throw new NoClassDefFoundError(errorMsg);
        } else {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.