Library: RemotingNG
Package: Serialization
Header: Poco/RemotingNG/BinaryDeserializer.h
A generic Deserializer using a proprietary binary serialization format based on the Poco::BinaryReader class. The BinaryDeserializer is used in conjunction with the BinarySerializer class.
Please see the BinarySerializer class for more information.
Direct Base Classes: Deserializer
All Base Classes: Deserializer, SerializerBase
Member Functions: deserialize, deserializeMessageBegin, deserializeMessageEnd, deserializeNullableBegin, deserializeNullableEnd, deserializeSequenceBegin, deserializeSequenceEnd, deserializeStructBegin, deserializeStructEnd, findMessage, resetImpl, setupImpl
Inherited Functions: clearProperties, deserialize, deserializeMessageBegin, deserializeMessageEnd, deserializeNullableBegin, deserializeNullableEnd, deserializeSequenceBegin, deserializeSequenceEnd, deserializeStructBegin, deserializeStructEnd, findMessage, getProperty, hasProperty, popProperty, pushAttribute, pushProperty, reset, resetImpl, setup, setupImpl
Creates a BinaryDeserializer.
 
 Destroys the BinaryDeserializer.
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    Poco::Int8 & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    Poco::UInt8 & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    Poco::Int16 & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    Poco::UInt16 & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    Poco::Int32 & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    Poco::UInt32 & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    long & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    unsigned long & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    float & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    double & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    bool & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    char & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    std::string & value
);
 
 bool deserialize(
    const std::string & name,
    bool isMandatory,
    std::vector < char > & value
);
 
 void deserializeMessageBegin(
    const std::string & name,
    SerializerBase::MessageType type
);
 
 void deserializeMessageEnd(
    const std::string & name,
    SerializerBase::MessageType type
);
 
 bool deserializeNullableBegin(
    const std::string & name,
    bool isMandatory,
    bool & isNull
);
 
 void deserializeNullableEnd(
    const std::string & name
);
 
 bool deserializeSequenceBegin(
    const std::string & name,
    bool isMandatory,
    Poco::UInt32 & lengthHint
);
 
 void deserializeSequenceEnd(
    const std::string & name
);
 
 bool deserializeStructBegin(
    const std::string & name,
    bool isMandatory
);
 
 void deserializeStructEnd(
    const std::string & name
);
 
 SerializerBase::MessageType findMessage(
    std::string & name
);
 
   
 void resetImpl();
 
   
 void setupImpl(
    std::istream & istr
);