接口 Serialization
-
- 所有超级接口:
Serialization
@Deprecated public interface Serialization extends Serialization
已过时。
-
-
方法概要
所有方法 实例方法 抽象方法 默认方法 已过时的方法 修饰符和类型 方法 说明 ObjectInputdeserialize(URL url, InputStream input)已过时。default ObjectInputdeserialize(URL url, InputStream input)已过时。Get a deserialization implementation instanceObjectOutputserialize(URL url, OutputStream output)已过时。default ObjectOutputserialize(URL url, OutputStream output)已过时。Get a serialization implementation instance-
从接口继承的方法 org.apache.dubbo.common.serialize.Serialization
getContentType, getContentTypeId
-
-
-
-
方法详细资料
-
serialize
ObjectOutput serialize(URL url, OutputStream output) throws IOException
已过时。- 抛出:
IOException
-
deserialize
ObjectInput deserialize(URL url, InputStream input) throws IOException
已过时。- 抛出:
IOException
-
serialize
default ObjectOutput serialize(URL url, OutputStream output) throws IOException
已过时。从接口复制的说明:SerializationGet a serialization implementation instance- 指定者:
serialize在接口中Serialization- 参数:
url- URL address for the remote serviceoutput- the underlying output stream- 返回:
- serializer
- 抛出:
IOException
-
deserialize
default ObjectInput deserialize(URL url, InputStream input) throws IOException
已过时。从接口复制的说明:SerializationGet a deserialization implementation instance- 指定者:
deserialize在接口中Serialization- 参数:
url- URL address for the remote serviceinput- the underlying input stream- 返回:
- deserializer
- 抛出:
IOException
-
-