MulticastDelegate
Contents
[
Hide
]
Inheritance: java.lang.Object, com.groupdocs.search.common.Delegate
public abstract class MulticastDelegate extends Delegate
Represents a delegate, which refers to class instances that have method to be invoked.
Constructors
Constructor | Description |
---|---|
MulticastDelegate() |
Methods
Method | Description |
---|---|
getInvocationList() | Returns an invocation list. |
getDelegateId() | Returns a delegate ID. |
op_Equality(MulticastDelegate d1, MulticastDelegate d2) | Checks two delegates for equality. |
op_Inequality(MulticastDelegate d1, MulticastDelegate d2) | Checks two delegates for inequality. |
MulticastDelegate()
public MulticastDelegate()
getInvocationList()
public final Delegate[] getInvocationList()
Returns an invocation list.
Returns: com.groupdocs.search.common.Delegate[] - An invocation list.
getDelegateId()
public String getDelegateId()
Returns a delegate ID.
Returns: java.lang.String - A delegate ID.
op_Equality(MulticastDelegate d1, MulticastDelegate d2)
public static boolean op_Equality(MulticastDelegate d1, MulticastDelegate d2)
Checks two delegates for equality.
Parameters:
Parameter | Type | Description |
---|---|---|
d1 | MulticastDelegate | The first delegate. |
d2 | MulticastDelegate | The second delegate. |
Returns: boolean - The result of checking two delegates for equality.
op_Inequality(MulticastDelegate d1, MulticastDelegate d2)
public static boolean op_Inequality(MulticastDelegate d1, MulticastDelegate d2)
Checks two delegates for inequality.
Parameters:
Parameter | Type | Description |
---|---|---|
d1 | MulticastDelegate | The first delegate. |
d2 | MulticastDelegate | The second delegate. |
Returns: boolean - The result of checking two delegates for inequality.