Interface IIpcService


public interface IIpcService
Interface for sending and receiving messages to components outside the current JVM. The implementation can be optimized for the local operating system, but only one implementation should be used per-system to avoid incompatibility.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    sendMessage(jadex.core.ComponentIdentifier receiver, ByteBuffer message)
    Sends a message to a component outside the current JVM.
  • Method Details

    • sendMessage

      void sendMessage(jadex.core.ComponentIdentifier receiver, ByteBuffer message)
      Sends a message to a component outside the current JVM.
      Parameters:
      receiver - The intended message receiver.
      message - The message.