java.lang.Object
io.qt.internal.QtJambiSignals.MultiSignal
io.qt.core.QObject.MultiSignal
io.qt.sql.QSqlDriver.MultiSignal_notification
- Enclosing class:
- QSqlDriver
Wrapper class for overloaded signals:
notification(const QString & name)
notification(const QString & name, QSqlDriver::NotificationSource source, const QVariant & payload)
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
Deprecated.Use the 3-args version of notification() instead.final void
emit
(String name, QSqlDriver.NotificationSource source, Object payload) final <A> QObject.Signal1<A>
Provides an overloaded signal by parameter type.final <A,
B, C> QObject.Signal3<A, B, C> Provides an overloaded signal by parameter types.Methods inherited from class io.qt.core.QObject.MultiSignal
containingObject, disconnect, disconnectAll
-
Method Details
-
overload
@QtAllowedTypeSet(java.lang.String.class) public final <A> QObject.Signal1<A> overload(Class<A> type1) throws QNoSuchSignalException Provides an overloaded signal by parameter type.
The only valid call is
notification.overload(java.lang.String.class)
QNoSuchSignalException
is thrown otherwise.- Overrides:
overload
in classQtJambiSignals.MultiSignal
- Type Parameters:
A
- signal parameter type- Parameters:
type1
- value of type A- Returns:
- overloaded signal
- Throws:
QNoSuchSignalException
- if signal is not available
-
overload
@QtAllowedTypeSet({java.lang.String.class,NotificationSource.class,java.lang.Object.class}) public final <A,B, QObject.Signal3<A,C> B, overloadC> (Class<A> type1, Class<B> type2, Class<C> type3) throws QNoSuchSignalException Provides an overloaded signal by parameter types.
The only valid call is
notification.overload(java.lang.String.class, io.qt.sql.QSqlDriver.NotificationSource.class, java.lang.Object.class)
QNoSuchSignalException
is thrown otherwise.- Overrides:
overload
in classQtJambiSignals.MultiSignal
- Type Parameters:
A
- signal parameter typeB
- signal parameter typeC
- signal parameter type- Parameters:
type1
- value of type Atype2
- value of type Btype3
- value of type C- Returns:
- overloaded signal
- Throws:
QNoSuchSignalException
- if signal is not available
-
emit
Deprecated.Use the 3-args version of notification() instead. -
emit
-