Example usage for java.lang System inheritedChannel

List of usage examples for java.lang System inheritedChannel

Introduction

In this page you can find the example usage for java.lang System inheritedChannel.

Prototype

public static Channel inheritedChannel() throws IOException 

Source Link

Document

Returns the channel inherited from the entity that created this Java virtual machine.

Usage

From source file:Main.java

public static void main(String[] args) throws Exception {

    Channel ch = System.inheritedChannel();
}