Uses of Class
com.lucimber.dbus.type.DBusUInt32
Packages that use DBusUInt32
Package
Description
D-Bus message decoding infrastructure for converting wire format to Java objects.
D-Bus message encoding infrastructure for converting Java objects to wire format.
Connection management, lifecycle, and handler pipeline for D-Bus communication.
D-Bus message types and structures for method calls, returns, signals, and errors.
Netty-based transport implementation for high-performance D-Bus communication.
Type-safe D-Bus data types and containers providing compile-time marshalling safety.
-
Uses of DBusUInt32 in com.lucimber.dbus.codec.decoder
Methods in com.lucimber.dbus.codec.decoder that return types with arguments of type DBusUInt32Methods in com.lucimber.dbus.codec.decoder with parameters of type DBusUInt32Modifier and TypeMethodDescriptionstatic void
DecoderUtils.verifyArrayLength
(DBusUInt32 length) Verifies that an array length is within D-Bus limits. -
Uses of DBusUInt32 in com.lucimber.dbus.codec.encoder
Methods in com.lucimber.dbus.codec.encoder with parameters of type DBusUInt32 -
Uses of DBusUInt32 in com.lucimber.dbus.connection
Methods in com.lucimber.dbus.connection that return DBusUInt32Modifier and TypeMethodDescriptionConnection.getNextSerial()
Generates and returns the next unique serial number for outbound messages.ConnectionHandle.getNextSerial()
Gets the next available serial number for message sequencing.DummyConnection.getNextSerial()
-
Uses of DBusUInt32 in com.lucimber.dbus.message
Methods in com.lucimber.dbus.message that return DBusUInt32Modifier and TypeMethodDescriptionInboundReply.getReplySerial()
Gets the serial number of the message this message is a reply to.OutboundReply.getReplySerial()
Gets the serial number of the message this message is a reply to.Message.getSerial()
Gets the serial number of this D-Bus message.Methods in com.lucimber.dbus.message with parameters of type DBusUInt32Modifier and TypeMethodDescriptionInboundError.Builder.withReplySerial
(DBusUInt32 replySerial) InboundMethodReturn.Builder.withReplySerial
(DBusUInt32 replySerial) OutboundError.Builder.withReplySerial
(DBusUInt32 replySerial) OutboundMethodReturn.Builder.withReplySerial
(DBusUInt32 replySerial) InboundError.Builder.withSerial
(DBusUInt32 serial) InboundMethodCall.Builder.withSerial
(DBusUInt32 serial) InboundMethodReturn.Builder.withSerial
(DBusUInt32 serial) InboundSignal.Builder.withSerial
(DBusUInt32 serial) OutboundError.Builder.withSerial
(DBusUInt32 serial) OutboundMethodCall.Builder.withSerial
(DBusUInt32 serial) OutboundMethodReturn.Builder.withSerial
(DBusUInt32 serial) OutboundSignal.Builder.withSerial
(DBusUInt32 serial) Constructors in com.lucimber.dbus.message with parameters of type DBusUInt32ModifierConstructorDescriptionInboundError
(DBusUInt32 serial, DBusUInt32 replySerial, DBusString sender, DBusString errorName) Constructs a new instance with mandatory parameter.InboundError
(DBusUInt32 serial, DBusUInt32 replySerial, DBusString sender, DBusString errorName, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter.InboundMethodCall
(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString member, boolean replyExpected) Constructs a new instance with mandatory parameter.InboundMethodCall
(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString member, boolean replyExpected, DBusString iface, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter.InboundMethodReturn
(DBusUInt32 serial, DBusUInt32 replySerial, DBusString sender) Constructs a new instance with mandatory parameter.InboundMethodReturn
(DBusUInt32 serial, DBusUInt32 replySerial, DBusString sender, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter.InboundSignal
(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString iface, DBusString member) Constructs a new instance with mandatory parameter.InboundSignal
(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString iface, DBusString member, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter.OutboundError
(DBusUInt32 serial, DBusUInt32 replySerial, DBusString errorName, DBusString dst, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter.OutboundMethodCall
(DBusUInt32 serial, DBusObjectPath path, DBusString member, boolean replyExpected, DBusString dst, DBusString iface, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter.OutboundMethodCall
(DBusUInt32 serial, DBusObjectPath path, DBusString member, boolean replyExpected, DBusString dst, DBusString iface, DBusSignature signature, List<? extends DBusType> payload, Duration timeout) Constructs a new instance with all parameter including timeout.OutboundMethodReturn
(DBusUInt32 serial, DBusUInt32 replySerial, DBusString dst, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter.OutboundSignal
(DBusUInt32 serial, DBusObjectPath path, DBusString iface, DBusString member, DBusString dst, DBusSignature signature, List<? extends DBusType> payload) Constructs a new instance with all parameter. -
Uses of DBusUInt32 in com.lucimber.dbus.netty
Methods in com.lucimber.dbus.netty that return DBusUInt32Modifier and TypeMethodDescriptionNettyConnection.getNextSerial()
NettyConnectionHandle.getNextSerial()
-
Uses of DBusUInt32 in com.lucimber.dbus.type
Methods in com.lucimber.dbus.type that return DBusUInt32Modifier and TypeMethodDescriptionstatic DBusUInt32
DBusUInt32.valueOf
(int value) Constructs a new D-Bus UIN32 from its Java counterpart.Methods in com.lucimber.dbus.type with parameters of type DBusUInt32