blob: cd3d85e73b2d29af04189c1a1d91eabec8b3383e [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.toree.communication.socket
import org.zeromq.ZMQ.{Socket, Context}
/**
* Represents the runnable component of a socket that processes messages and
* sends messages placed on an outbound queue. Targeted towards the request
* socket, this runnable ensures that a message is sent out first and then a
* response is received before sending the next message.
*
* @param context The ZMQ context to use with this runnable to create a socket
* @param inboundMessageCallback The callback to invoke when receiving a message
* on the socket created
* @param socketOptions The options to use when creating the socket
*/
class ReqSocketRunnable(
private val context: Context,
private val inboundMessageCallback: Option[(Seq[Array[Byte]]) => Unit],
private val socketOptions: SocketOption*
) extends ZeroMQSocketRunnable(
context,
ReqSocket,
inboundMessageCallback,
socketOptions: _*
) {
/** Does nothing. */
override protected def processNextInboundMessage(
socket: Socket,
flags: Int
): Unit = {}
/**
* Sends a message and then waits for an incoming response (if a message
* was sent from the outbound queue).
*
* @param socket The socket to use when sending the message
*
* @return True if a message was sent, otherwise false
*/
override protected def processNextOutboundMessage(socket: Socket): Boolean = {
val shouldReceiveMessage = super.processNextOutboundMessage(socket)
if (shouldReceiveMessage) {
super.processNextInboundMessage(socket, 0)
}
shouldReceiveMessage
}
}