Package org.jeromq.ZMQ

Examples of org.jeromq.ZMQ.Context


  @Override
  public void activateOptions() {
        LogLog.debug("Configuring appender...");
    super.activateOptions();

    final Context context = ZMQ.context(threads);
    Socket sender;

    if (PUBSUB.equals(socketType)) {
      LogLog.debug("Setting socket type to PUB");
      sender = context.socket(ZMQ.PUB);
    }
    else if (PUSHPULL.equals(socketType))
    {
      LogLog.debug("Setting socket type to PUSH");
      sender = context.socket(ZMQ.PUSH);
    }
    else
    {
      LogLog.debug("Setting socket type to default PUB");
      sender = context.socket(ZMQ.PUB);
    }
    sender.setLinger(1);
   
    final Socket socket = sender;
   
View Full Code Here


    }

    public void activateOptions() {
        super.activateOptions();

        final Context context = ZMQ.context(threads);
        Socket sender;

        sender = context.socket(ZMQ.PUB);
        sender.setLinger(1);

        final Socket socket = sender;

        socket.bind(listenAddress);
View Full Code Here

TOP

Related Classes of org.jeromq.ZMQ.Context

Copyright © 2018 www.massapicom. 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.