本文整理了Java中org.jboss.marshalling.Marshalling.nullStreamHeader()
方法的一些代码示例,展示了Marshalling.nullStreamHeader()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Marshalling.nullStreamHeader()
方法的具体详情如下:
包路径:org.jboss.marshalling.Marshalling
类名称:Marshalling
方法名:nullStreamHeader
[英]Get the default stream header producer, which reads and writes no header at all.
[中]获取默认的流头生成器,它完全不读取和写入头。
代码示例来源:origin: wildfly/wildfly
/**
* Get the default stream header, which is used if none was configured. This base implementation returns a
* no-operation stream header (writes and reads no bytes).
*
* @return the stream header
*/
protected StreamHeader getDefaultStreamHeader() {
return Marshalling.nullStreamHeader();
}
代码示例来源:origin: org.jboss.marshalling/jboss-marshalling
/**
* Get the default stream header, which is used if none was configured. This base implementation returns a
* no-operation stream header (writes and reads no bytes).
*
* @return the stream header
*/
protected StreamHeader getDefaultStreamHeader() {
return Marshalling.nullStreamHeader();
}
代码示例来源:origin: jboss-remoting/jboss-marshalling
/**
* Get the default stream header, which is used if none was configured. This base implementation returns a
* no-operation stream header (writes and reads no bytes).
*
* @return the stream header
*/
protected StreamHeader getDefaultStreamHeader() {
return Marshalling.nullStreamHeader();
}
代码示例来源:origin: jboss-remoting/jboss-marshalling
/**
* Get the default stream header, which is used if none was configured. This base implementation returns a
* no-operation stream header (writes and reads no bytes).
*
* @return the stream header
*/
protected StreamHeader getDefaultStreamHeader() {
return Marshalling.nullStreamHeader();
}
代码示例来源:origin: org.jboss.marshalling/jboss-marshalling-osgi
/**
* Get the default stream header, which is used if none was configured. This base implementation returns a
* no-operation stream header (writes and reads no bytes).
*
* @return the stream header
*/
protected StreamHeader getDefaultStreamHeader() {
return Marshalling.nullStreamHeader();
}
代码示例来源:origin: org.jboss.eap/wildfly-client-all
/**
* Get the default stream header, which is used if none was configured. This base implementation returns a
* no-operation stream header (writes and reads no bytes).
*
* @return the stream header
*/
protected StreamHeader getDefaultStreamHeader() {
return Marshalling.nullStreamHeader();
}
内容来源于网络,如有侵权,请联系作者删除!