001/* 002 * JGrapes Event Driven Framework 003 * Copyright (C) 2017-2018 Michael N. Lipp 004 * 005 * This program is free software; you can redistribute it and/or modify it 006 * under the terms of the GNU Affero General Public License as published by 007 * the Free Software Foundation; either version 3 of the License, or 008 * (at your option) any later version. 009 * 010 * This program is distributed in the hope that it will be useful, but 011 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 012 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License 013 * for more details. 014 * 015 * You should have received a copy of the GNU Affero General Public License along 016 * with this program; if not, see <http://www.gnu.org/licenses/>. 017 */ 018 019package org.jgrapes.http.events; 020 021import java.util.Optional; 022import org.jdrupes.httpcodec.protocols.websocket.WsCloseFrame; 023import org.jgrapes.core.Channel; 024 025/** 026 * An event that provides the close information when a WebSockt is closed. 027 * Note that this is fired in addition to the connection close event. 028 */ 029public class WebSocketClose extends MessageReceived<Void> { 030 031 private final Optional<Integer> statusCode; 032 private final Optional<String> reason; 033 034 /** 035 * @param closeFrame the close frame 036 * @param channels 037 */ 038 public WebSocketClose(WsCloseFrame closeFrame, Channel... channels) { 039 super(channels); 040 statusCode = closeFrame.statusCode(); 041 reason = closeFrame.reason(); 042 } 043 044 /** 045 * @return the statusCode 046 */ 047 public Optional<Integer> statusCode() { 048 return statusCode; 049 } 050 051 /** 052 * @return the reason 053 */ 054 public Optional<String> reason() { 055 return reason; 056 } 057 058}