Example usage for org.springframework.boot.devtools.livereload Frame write

List of usage examples for org.springframework.boot.devtools.livereload Frame write

Introduction

In this page you can find the example usage for org.springframework.boot.devtools.livereload Frame write.

Prototype

void write(OutputStream outputStream) throws IOException 

Source Link

Usage

From source file:org.springframework.boot.devtools.livereload.Connection.java

private synchronized void writeWebSocketFrame(Frame frame) throws IOException {
    frame.write(this.outputStream);
}