Class DefaultMessageRouter

  • All Implemented Interfaces:
    MessageRouter

    public class DefaultMessageRouter
    extends java.lang.Object
    implements MessageRouter
    This class represents a simple Message Router implementation that simply sends its strings to the System.err channel.
    Since:
    MicroStrategy Web 8.1.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void error​(java.lang.String msg)
      Indicate that an error has occurred.
      void info​(java.lang.String msg)
      Indicates an informational message.
      void warning​(java.lang.String msg)
      Indicate that a warning has occurred.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DefaultMessageRouter

        public DefaultMessageRouter()
    • Method Detail

      • info

        public void info​(java.lang.String msg)
        Description copied from interface: MessageRouter
        Indicates an informational message.
        Specified by:
        info in interface MessageRouter
        Parameters:
        msg - The message associated with this information message.
      • warning

        public void warning​(java.lang.String msg)
        Description copied from interface: MessageRouter
        Indicate that a warning has occurred.
        Specified by:
        warning in interface MessageRouter
        Parameters:
        msg - The message associated with the warning.
      • error

        public void error​(java.lang.String msg)
        Description copied from interface: MessageRouter
        Indicate that an error has occurred.
        Specified by:
        error in interface MessageRouter
        Parameters:
        msg - The message associated with the error.