blob: 0746a063bc7c65584e19d02abb8f76b3ab7a2e6b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache license, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the license for the specific language governing permissions and
* limitations under the license.
*/
package org.apache.logging.log4j.jeromq.appender;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import org.zeromq.ZMQ;
class JeroMqTestClient implements Callable<List<String>> {
private final ZMQ.Context context;
private final String endpoint;
private final List<String> messages;
private final int receiveCount;
JeroMqTestClient(final ZMQ.Context context, final String endpoint, final int receiveCount) {
super();
this.context = context;
this.endpoint = endpoint;
this.receiveCount = receiveCount;
this.messages = new ArrayList<>(receiveCount);
}
@Override
public List<String> call() throws Exception {
try (ZMQ.Socket subscriber = context.socket(ZMQ.SUB)) {
subscriber.connect(endpoint);
subscriber.subscribe(new byte[0]);
for (int messageNum = 0; messageNum < receiveCount
&& !Thread.currentThread().isInterrupted(); messageNum++) {
// Use trim to remove the tailing '0' character
messages.add(subscriber.recvStr(0).trim());
}
}
return messages;
}
}