indexing description: "[ Event that requests status information from remote peers. The remote peers may send a EM_NET_STATUS_MESSAGE as response. ]" date: "$Date$" revision: "$Revision$" class EM_NET_STATUS_REQUEST inherit EM_NET_EVENT_OBJECT create {EM_NET_OBJECT_TYPES} make_set_type feature -- Serialization serialize (a_serializer: EM_NET_SERIALIZER) is -- Serialize to the given stream using `a_serializer'. do end serialization_byte_count: INTEGER is -- Count of bytes needed for a successful serialization do Result:=0 end unserialize (an_unserializer: EM_NET_UNSERIALIZER) is -- Unserialize from a given stream using `an_unserializer'. do end feature {NONE} -- Implementation invariant invariant_clause: True -- Your invariant here end