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


Java Session类代码示例

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


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

示例1: stop

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
/** 
 * Stops the RTSP server but not the Android Service. 
 * To stop the Android Service you need to call {@link android.content.Context#stopService(Intent)}; 
 */
public void stop() {
	if (mListenerThread != null) {
		try {
			mListenerThread.kill();
			for ( Session session : mSessions.keySet() ) {
			    if ( session != null ) {
			    	if (session.isStreaming()) session.stop();
			    } 
			}
		} catch (Exception e) {
		} finally {
			mListenerThread = null;
		}
	}
}
 
开发者ID:ghazi94,项目名称:Android_CCTV,代码行数:20,代码来源:RtspServer.java

示例2: onSessionError

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
@Override
public void onSessionError(int reason, int streamType, Exception e) {
    switch (reason) {
        case Session.ERROR_CAMERA_ALREADY_IN_USE:
            break;
        case Session.ERROR_CAMERA_HAS_NO_FLASH:
            break;
        case Session.ERROR_INVALID_SURFACE:
            break;
        case Session.ERROR_STORAGE_NOT_READY:
            break;
        case Session.ERROR_CONFIGURATION_NOT_SUPPORTED:
            break;
        case Session.ERROR_OTHER:
            break;
    }

    if (e != null) {
        alertError(e.getMessage());
        e.printStackTrace();
    }
}
 
开发者ID:quanhua92,项目名称:libstreaming_android_studio,代码行数:23,代码来源:StreamAndroidPhone.java

示例3: stop

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
/** 
 * Stops the RTSP server but not the Android Service. 
 * To stop the Android Service you need to call {@link android.content.Context#stopService(android.content.Intent)};
 */
public void stop() {
	if (mListenerThread != null) {
		try {
			mListenerThread.kill();
			for ( Session session : mSessions.keySet() ) {
			    if ( session != null ) {
			    	if (session.isStreaming()) session.stop();
			    } 
			}
		} catch (Exception e) {
		} finally {
			mListenerThread = null;
		}
	}
}
 
开发者ID:Oo-Dev,项目名称:OoDroid2,代码行数:20,代码来源:RtspServer.java

示例4: stop

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
/** 
 * Stops the RTSP server but not the Android Service. 
 * To stop the Android Service you need to call {@link android.content.Context#stopService(Intent)}; 
 */
public void stop() {
	if (mListenerThread != null) {
		try {
			mListenerThread.kill();
			for ( Session session : mSessions.keySet() ) {
			    if ( session != null && session.isStreaming() ) {
					session.stop();
			    } 
			}
		} catch (Exception e) {
		} finally {
			mListenerThread = null;
		}
	}
}
 
开发者ID:fyhertz,项目名称:libstreaming,代码行数:20,代码来源:RtspServer.java

示例5: isStreaming

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
public boolean isStreaming() {
	for ( Session session : mSessions.keySet() ) {
	    if ( session != null ) {
	    	if (session.isStreaming()) return true;
	    } 
	}
	return false;
}
 
开发者ID:ghazi94,项目名称:Android_CCTV,代码行数:9,代码来源:CustomHttpServer.java

示例6: getBitrate

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
public long getBitrate() {
	long bitrate = 0;
	for ( Session session : mSessions.keySet() ) {
	    if ( session != null ) {
	    	if (session.isStreaming()) bitrate += session.getBitrate();
	    } 
	}
	return bitrate;
}
 
开发者ID:ghazi94,项目名称:Android_CCTV,代码行数:10,代码来源:CustomHttpServer.java

示例7: isStreaming

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
/** Returns whether or not the RTSP server is streaming to some client(s). */
public boolean isStreaming() {
	for ( Session session : mSessions.keySet() ) {
	    if ( session != null ) {
	    	if (session.isStreaming()) return true;
	    } 
	}
	return false;
}
 
开发者ID:ghazi94,项目名称:Android_CCTV,代码行数:10,代码来源:RtspServer.java

示例8: getBitrate

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
/** Returns the bandwidth consumed by the RTSP server in bits per second. */
public long getBitrate() {
	long bitrate = 0;
	for ( Session session : mSessions.keySet() ) {
	    if ( session != null ) {
	    	if (session.isStreaming()) bitrate += session.getBitrate();
	    } 
	}
	return bitrate;
}
 
开发者ID:ghazi94,项目名称:Android_CCTV,代码行数:11,代码来源:RtspServer.java

示例9: handleRequest

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
/** 
 * By default the RTSP uses {@link UriParser} to parse the URI requested by the client
 * but you can change that behavior by override this method.
 * @param uri The uri that the client has requested
 * @param client The socket associated to the client
 * @return A proper session
 */
protected Session handleRequest(String uri, Socket client) throws IllegalStateException, IOException {
	Session session = UriParser.parse(uri);
	session.setOrigin(client.getLocalAddress().getHostAddress());
	if (session.getDestination()==null) {
		session.setDestination(client.getInetAddress().getHostAddress());
	}
	return session;
}
 
开发者ID:ghazi94,项目名称:Android_CCTV,代码行数:16,代码来源:RtspServer.java

示例10: handleRequest

import net.majorkernelpanic.streaming.Session; //导入依赖的package包/类
/** 
 * By default the RTSP uses {@link net.majorkernelpanic.streaming.rtsp.UriParser} to parse the URI requested by the client
 * but you can change that behavior by override this method.
 * @param uri The uri that the client has requested
 * @param client The socket associated to the client
 * @return A proper session
 */
protected Session handleRequest(String uri, Socket client) throws IllegalStateException, IOException {
	Session session = UriParser.parse(uri);
	session.setOrigin(client.getLocalAddress().getHostAddress());
	if (session.getDestination()==null) {
		session.setDestination(client.getInetAddress().getHostAddress());
	}
	return session;
}
 
开发者ID:Oo-Dev,项目名称:OoDroid2,代码行数:16,代码来源:RtspServer.java


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