当前位置: 首页>>代码示例>>Java>>正文


Java Endpoint类代码示例

本文整理汇总了Java中javax.websocket.Endpoint的典型用法代码示例。如果您正苦于以下问题:Java Endpoint类的具体用法?Java Endpoint怎么用?Java Endpoint使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Endpoint类属于javax.websocket包,在下文中一共展示了Endpoint类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: registerSession

import javax.websocket.Endpoint; //导入依赖的package包/类
protected void registerSession(Endpoint endpoint, WsSession wsSession) {

        if (!wsSession.isOpen()) {
            // The session was closed during onOpen. No need to register it.
            return;
        }
        synchronized (endPointSessionMapLock) {
            if (endpointSessionMap.size() == 0) {
                BackgroundProcessManager.getInstance().register(this);
            }
            Set<WsSession> wsSessions = endpointSessionMap.get(endpoint);
            if (wsSessions == null) {
                wsSessions = new HashSet<WsSession>();
                endpointSessionMap.put(endpoint, wsSessions);
            }
            wsSessions.add(wsSession);
        }
        sessions.put(wsSession, wsSession);
    }
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:20,代码来源:WsWebSocketContainer.java

示例2: unregisterSession

import javax.websocket.Endpoint; //导入依赖的package包/类
protected void unregisterSession(Endpoint endpoint, WsSession wsSession) {

        synchronized (endPointSessionMapLock) {
            Set<WsSession> wsSessions = endpointSessionMap.get(endpoint);
            if (wsSessions != null) {
                wsSessions.remove(wsSession);
                if (wsSessions.size() == 0) {
                    endpointSessionMap.remove(endpoint);
                }
            }
            if (endpointSessionMap.size() == 0) {
                BackgroundProcessManager.getInstance().unregister(this);
            }
        }
        sessions.remove(wsSession);
    }
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:17,代码来源:WsWebSocketContainer.java

示例3: initWebSocketSession

import javax.websocket.Endpoint; //导入依赖的package包/类
private void initWebSocketSession(String url, int wsConnectionTimeout) throws Exception {
    CountDownLatch wsLatch = new CountDownLatch(1);
    ClientEndpointConfig cec = ClientEndpointConfig.Builder.create().build();
    ClientManager client = ClientManager.createClient();

    client.connectToServer(new Endpoint() {
        @Override
        public void onOpen(Session session, EndpointConfig endpointConfig) {
            wsSession = session;
            wsLatch.countDown();
        }
    }, cec, new URI(url));

    if (!wsLatch.await(wsConnectionTimeout, TimeUnit.SECONDS)) {
        throw new TimeoutException("Web socket connection timeout");
    }
}
 
开发者ID:FlowCI,项目名称:flow-platform,代码行数:18,代码来源:LogEventHandler.java

示例4: getEndpointConfigs

import javax.websocket.Endpoint; //导入依赖的package包/类
@Override
public Set<ServerEndpointConfig> getEndpointConfigs(
        Set<Class<? extends Endpoint>> scanned) {

    Set<ServerEndpointConfig> result = new HashSet<ServerEndpointConfig>();

    if (scanned.contains(EchoEndpoint.class)) {
        result.add(ServerEndpointConfig.Builder.create(
                EchoEndpoint.class,
                "/websocket/echoProgrammatic").build());
    }

    if (scanned.contains(DrawboardEndpoint.class)) {
        result.add(ServerEndpointConfig.Builder.create(
                DrawboardEndpoint.class,
                "/websocket/drawboard").build());
    }

    return result;
}
 
开发者ID:sunmingshuai,项目名称:apache-tomcat-7.0.73-with-comment,代码行数:21,代码来源:ExamplesConfig.java

示例5: registerSession

import javax.websocket.Endpoint; //导入依赖的package包/类
protected void registerSession(Endpoint endpoint, WsSession wsSession) {

		if (!wsSession.isOpen()) {
			// The session was closed during onOpen. No need to register it.
			return;
		}
		synchronized (endPointSessionMapLock) {
			if (endpointSessionMap.size() == 0) {
				BackgroundProcessManager.getInstance().register(this);
			}
			Set<WsSession> wsSessions = endpointSessionMap.get(endpoint);
			if (wsSessions == null) {
				wsSessions = new HashSet<WsSession>();
				endpointSessionMap.put(endpoint, wsSessions);
			}
			wsSessions.add(wsSession);
		}
		sessions.put(wsSession, wsSession);
	}
 
开发者ID:how2j,项目名称:lazycat,代码行数:20,代码来源:WsWebSocketContainer.java

示例6: unregisterSession

import javax.websocket.Endpoint; //导入依赖的package包/类
protected void unregisterSession(Endpoint endpoint, WsSession wsSession) {

		synchronized (endPointSessionMapLock) {
			Set<WsSession> wsSessions = endpointSessionMap.get(endpoint);
			if (wsSessions != null) {
				wsSessions.remove(wsSession);
				if (wsSessions.size() == 0) {
					endpointSessionMap.remove(endpoint);
				}
			}
			if (endpointSessionMap.size() == 0) {
				BackgroundProcessManager.getInstance().unregister(this);
			}
		}
		sessions.remove(wsSession);
	}
 
开发者ID:how2j,项目名称:lazycat,代码行数:17,代码来源:WsWebSocketContainer.java

示例7: openConnection

import javax.websocket.Endpoint; //导入依赖的package包/类
@Override
protected void openConnection() {
	this.taskExecutor.execute(new Runnable() {
		@Override
		public void run() {
			try {
				logger.info("Connecting to WebSocket at " + getUri());
				Endpoint endpointToUse = (endpoint != null) ? endpoint : endpointProvider.getHandler();
				ClientEndpointConfig endpointConfig = configBuilder.build();
				session = getWebSocketContainer().connectToServer(endpointToUse, endpointConfig, getUri());
				logger.info("Successfully connected");
			}
			catch (Throwable ex) {
				logger.error("Failed to connect", ex);
			}
		}
	});
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:19,代码来源:EndpointConnectionManager.java

示例8: upgradeInternal

import javax.websocket.Endpoint; //导入依赖的package包/类
@Override
public void upgradeInternal(ServerHttpRequest httpRequest, ServerHttpResponse httpResponse,
		String selectedProtocol, List<Extension> selectedExtensions, Endpoint endpoint)
		throws HandshakeFailureException {

	HttpServletRequest request = getHttpServletRequest(httpRequest);
	HttpServletResponse response = getHttpServletResponse(httpResponse);

	StringBuffer requestUrl = request.getRequestURL();
	String path = request.getRequestURI();  // shouldn't matter
	Map<String, String> pathParams = Collections.<String, String> emptyMap();

	ServerEndpointRegistration endpointConfig = new ServerEndpointRegistration(path, endpoint);
	endpointConfig.setSubprotocols(Collections.singletonList(selectedProtocol));
	endpointConfig.setExtensions(selectedExtensions);

	try {
		ServerContainer container = getContainer(request);
		upgradeMethod.invoke(container, request, response, endpointConfig, pathParams);
	}
	catch (Exception ex) {
		throw new HandshakeFailureException(
				"Servlet request failed to upgrade to WebSocket for " + requestUrl, ex);
	}
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:26,代码来源:WebSphereRequestUpgradeStrategy.java

示例9: createConfiguredServerEndpoint

import javax.websocket.Endpoint; //导入依赖的package包/类
private ConfiguredServerEndpoint createConfiguredServerEndpoint(String selectedProtocol,
		List<Extension> selectedExtensions, Endpoint endpoint, HttpServletRequest servletRequest) {

	String path = servletRequest.getRequestURI();  // shouldn't matter
	ServerEndpointRegistration endpointRegistration = new ServerEndpointRegistration(path, endpoint);
	endpointRegistration.setSubprotocols(Arrays.asList(selectedProtocol));
	endpointRegistration.setExtensions(selectedExtensions);

	EncodingFactory encodingFactory = new EncodingFactory(
			Collections.<Class<?>, List<InstanceFactory<? extends Encoder>>>emptyMap(),
			Collections.<Class<?>, List<InstanceFactory<? extends Decoder>>>emptyMap(),
			Collections.<Class<?>, List<InstanceFactory<? extends Encoder>>>emptyMap(),
			Collections.<Class<?>, List<InstanceFactory<? extends Decoder>>>emptyMap());
	try {
		return (endpointConstructorWithEndpointFactory ?
				endpointConstructor.newInstance(endpointRegistration,
						new EndpointInstanceFactory(endpoint), null, encodingFactory, null) :
				endpointConstructor.newInstance(endpointRegistration,
						new EndpointInstanceFactory(endpoint), null, encodingFactory));
	}
	catch (Exception ex) {
		throw new HandshakeFailureException("Failed to instantiate ConfiguredServerEndpoint", ex);
	}
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:25,代码来源:UndertowRequestUpgradeStrategy.java

示例10: testCreateWebSocketAndConnectToServer

import javax.websocket.Endpoint; //导入依赖的package包/类
@Test
public void testCreateWebSocketAndConnectToServer() throws Exception {
    SlackWebsocketConnection slack = new SlackWebsocketConnection("token", null, 8080);

    SlackAuthen slackAuthen = PowerMockito.mock(SlackAuthen.class);
    PowerMockito.whenNew(SlackAuthen.class).withNoArguments().thenReturn(slackAuthen);
    PowerMockito.when(slackAuthen.tokenAuthen(Mockito.anyString(), Mockito.anyString(), Mockito.anyInt())).thenReturn(slackInfo);

    ClientManager clientManager = PowerMockito.mock(ClientManager.class);
    PowerMockito.mockStatic(ClientManager.class);
    PowerMockito.when(ClientManager.createClient()).thenReturn(clientManager);

    boolean connect = slack.connect();
    assertThat(connect, is(true));

    Mockito.verify(clientManager).connectToServer(Mockito.any(Endpoint.class), Mockito.any(URI.class));
    PowerMockito.verifyStatic();
    ClientManager.createClient();
}
 
开发者ID:mockupcode,项目名称:slack-rtm-api,代码行数:20,代码来源:SlackWebsocketConnectionTest.java

示例11: getEndpointConfigs

import javax.websocket.Endpoint; //导入依赖的package包/类
@Override
public Set<ServerEndpointConfig> getEndpointConfigs(
        Set<Class<? extends Endpoint>> scanned) {

    Set<ServerEndpointConfig> result = new HashSet<>();

    // Endpoint subclass config

    if (scanned.contains(MyEndpoint.class)) {
        result.add(ServerEndpointConfig.Builder.create(
        		MyEndpoint.class,
                "/MyEndpoint").build());
    }
    
    if (scanned.contains(GameEndpoint.class)) {
        result.add(ServerEndpointConfig.Builder.create(
        		GameEndpoint.class,
                "/Game").build());
    }

    return result;
}
 
开发者ID:AlkaidFang,项目名称:PearlHarbor,代码行数:23,代码来源:WebSocketConnectionClasser.java

示例12: createAndGetSession

import javax.websocket.Endpoint; //导入依赖的package包/类
/**
 * Create session
 *
 * @param jsessionid
 * @param userpwd
 * @return
 */
protected Session createAndGetSession(String jsessionid, String userpwd) {
	WebSocketContainer container = ContainerProvider.getWebSocketContainer();
	try {
		StringBuilder sb = new StringBuilder("ws://localhost:");
		sb.append(PORT).append(Constants.SLASH).append(CTXPATH).append(Constants.SLASH).append("ocelot-endpoint");
		URI uri = new URI(sb.toString());
		return container.connectToServer(new Endpoint() {
			@Override
			public void onOpen(Session session, EndpointConfig config) {
			}
		}, createClientEndpointConfigWithJsession(jsessionid, userpwd), uri);
	} catch (URISyntaxException | DeploymentException | IOException ex) {
		ex.getCause().printStackTrace();
		fail("CONNEXION FAILED " + ex.getMessage());
	}
	return null;
}
 
开发者ID:ocelotds,项目名称:ocelot,代码行数:25,代码来源:AbstractOcelotTest.java

示例13: assertMessageReceived

import javax.websocket.Endpoint; //导入依赖的package包/类
private void assertMessageReceived( String endpoint, String expectedMessage, String messageToSend ) throws Exception {
    final SettableFuture<String> futureMessage = SettableFuture.create();

    client.connectToServer( new Endpoint() {

        @Override
        public void onOpen( Session session, EndpointConfig config ) {
            clientSession = session;
            try {
                session.addMessageHandler( new MessageHandler.Whole<String>() {

                    @Override
                    public void onMessage( String message ) {
                        System.out.println( "Received message: " + message );
                        futureMessage.set( message );
                    }
                } );
                session.getBasicRemote().sendText( messageToSend );
            } catch ( IOException e ) {
                e.printStackTrace();
            }
        }
    }, cec, new URI( "ws://localhost:8025/" + endpoint ) );

    assertEquals( expectedMessage, futureMessage.get( 2, TimeUnit.SECONDS ) );
}
 
开发者ID:renatoathaydes,项目名称:spark-ws,代码行数:27,代码来源:SparkWSTest.java

示例14: registerSession

import javax.websocket.Endpoint; //导入依赖的package包/类
protected void registerSession(Endpoint endpoint, WsSession wsSession) {

        Class<?> endpointClazz = endpoint.getClass();

        if (!wsSession.isOpen()) {
            // The session was closed during onOpen. No need to register it.
            return;
        }
        synchronized (endPointSessionMapLock) {
            if (endpointSessionMap.size() == 0) {
                BackgroundProcessManager.getInstance().register(this);
            }
            Set<WsSession> wsSessions = endpointSessionMap.get(endpointClazz);
            if (wsSessions == null) {
                wsSessions = new HashSet<WsSession>();
                endpointSessionMap.put(endpointClazz, wsSessions);
            }
            wsSessions.add(wsSession);
        }
        sessions.put(wsSession, wsSession);
    }
 
开发者ID:deathspeeder,项目名称:class-guard,代码行数:22,代码来源:WsWebSocketContainer.java

示例15: unregisterSession

import javax.websocket.Endpoint; //导入依赖的package包/类
protected void unregisterSession(Endpoint endpoint, WsSession wsSession) {

        Class<?> endpointClazz = endpoint.getClass();

        synchronized (endPointSessionMapLock) {
            Set<WsSession> wsSessions = endpointSessionMap.get(endpointClazz);
            if (wsSessions != null) {
                wsSessions.remove(wsSession);
                if (wsSessions.size() == 0) {
                    endpointSessionMap.remove(endpointClazz);
                }
            }
            if (endpointSessionMap.size() == 0) {
                BackgroundProcessManager.getInstance().unregister(this);
            }
        }
        sessions.remove(wsSession);
    }
 
开发者ID:deathspeeder,项目名称:class-guard,代码行数:19,代码来源:WsWebSocketContainer.java


注:本文中的javax.websocket.Endpoint类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。