Interface DialogBuilder.Unconfigured

  • Enclosing interface:
    DialogBuilder

    public static interface DialogBuilder.Unconfigured
    Represents an unconfigured builder, which requires more information about the dialog before it can be created. The client must call one of the methods on this interface to select a DialogBuilder, then configure the builder and create the dialog using DialogBuilder.newDialog().
     DialogActivity d = sleeSipProvider.newDialogBuilder()
                                       .outgoing(from, to)
                                       .withCallID(callID)
                                       .newDialog();