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

io.kubernetes.client.examples.WebSocketsExample Maven / Gradle / Ivy

The newest version!
/*
Copyright 2020 The Kubernetes Authors.
Licensed 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 io.kubernetes.client.examples;

import io.kubernetes.client.openapi.ApiClient;
import io.kubernetes.client.openapi.ApiException;
import io.kubernetes.client.util.Config;
import io.kubernetes.client.util.WebSockets;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import okhttp3.WebSocket;

/**
 * This is a pretty low level, most people won't need to use WebSockets directly.
 *
 * 

If you do need to run it, you can run: mvn exec:java \ * -Dexec.mainClass=io.kubernetes.client.examples.WebSocketsExample \ * -Dexec.args=/api/v1/namespaces/default/pods//attach?stdout=true * *

Note that you'd think 'watch' calls were WebSockets, but you'd be wrong, they're straight HTTP * GET calls. */ public class WebSocketsExample { public static void main(String... args) throws ApiException, IOException { final ApiClient client = Config.defaultClient(); WebSockets.stream( args[0], "GET", client, new WebSockets.SocketListener() { private volatile WebSocket socket; @Override public void open(String protocol, WebSocket socket) { this.socket = socket; } @Override public void close() {} @Override public void bytesMessage(InputStream is) {} @Override public void failure(Throwable t) { t.printStackTrace(); } @Override public void textMessage(Reader in) { try { BufferedReader reader = new BufferedReader(in); for (String line = reader.readLine(); line != null; line = reader.readLine()) { System.out.println(line); } } catch (IOException ex) { ex.printStackTrace(); } } }); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy