All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dflib.jjava.jupyter.messages.reply.InterruptReply Maven / Gradle / Ivy

The newest version!
package org.dflib.jjava.jupyter.messages.reply;

import org.dflib.jjava.jupyter.messages.ContentType;
import org.dflib.jjava.jupyter.messages.MessageType;
import org.dflib.jjava.jupyter.messages.ReplyType;
import org.dflib.jjava.jupyter.messages.request.InterruptRequest;

public class InterruptReply implements ContentType, ReplyType {
    public static final MessageType MESSAGE_TYPE = MessageType.INTERRUPT_REPLY;
    public static final MessageType REQUEST_MESSAGE_TYPE = MessageType.INTERRUPT_REQUEST;

    @Override
    public MessageType getType() {
        return MESSAGE_TYPE;
    }

    @Override
    public MessageType getRequestType() {
        return REQUEST_MESSAGE_TYPE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy