Beispiel #1
0
 public static void enable_status_popup(RubyModule /*!*/ self, bool /*!*/ enable)
 {
 }
Beispiel #2
0
 public static object dosync(RubyModule /*!*/ self, bool /*!*/ show_status_popup)
 {
     SyncThread.getInstance().addQueueCommand(new SyncThread.SyncCommand(SyncThread.scSyncAll, show_status_popup));
     return(SyncThread.getInstance().getRetValue());
 }
Beispiel #3
0
 internal protected virtual RubyMemberInfo Copy(RubyMemberFlags flags, RubyModule /*!*/ module)
 {
     throw Assert.Unreachable;
 }
Beispiel #4
0
 public static void set_objectnotify_url(RubyModule /*!*/ self, [DefaultProtocol, NotNull] string /*!*/ url)
 {
     SyncNotify.setObjectNotifyUrl(url);
 }
Beispiel #5
0
 public static object dosync(RubyModule /*!*/ self)
 {
     SyncThread.getInstance().addQueueCommand(new SyncThread.SyncCommand(SyncThread.scSyncAll, false));
     return(SyncThread.getInstance().getRetValue());
 }
Beispiel #6
0
 public static void set_threaded_mode(RubyModule /*!*/ self, [NotNull] bool /*!*/ bThreadMode)
 {
     SyncThread.getInstance().setNonThreadedMode(!bThreadMode);
     SyncThread.getSyncEngine().setNonThreadedMode(!bThreadMode);
 }
Beispiel #7
0
 public static void set_pollinterval(RubyModule /*!*/ self)
 {
     SyncThread.stopSync();
 }
Beispiel #8
0
 public static int set_pollinterval(RubyModule /*!*/ self, [NotNull] int /*!*/ nInterval)
 {
     return(0);
 }
Beispiel #9
0
 public static void set_pollinterval(RubyModule /*!*/ self)
 {
 }
Beispiel #10
0
 public static void logout(RubyModule /*!*/ self)
 {
 }
Beispiel #11
0
 public static void set_syncserver(RubyModule /*!*/ self, [NotNull] String /*!*/ syncserver)
 {
 }
Beispiel #12
0
 public static void set_threaded_mode(RubyModule /*!*/ self, [NotNull] bool /*!*/ bThreadMode)
 {
 }
Beispiel #13
0
 public static void update_blob_attribs(RubyModule /*!*/ self, [NotNull] String /*!*/ szPartition, [NotNull] int /*!*/ srcID)
 {
 }
Beispiel #14
0
 public static bool is_blob_attr(RubyModule /*!*/ self, [NotNull] String /*!*/ szPartition, [NotNull] int /*!*/ srcID, [NotNull] String /*!*/ szAttrName)
 {
     return(false);
 }
Beispiel #15
0
 public static bool is_blob_attr(RubyModule /*!*/ self, [NotNull] String /*!*/ strPartition, [NotNull] int /*!*/ nSrcID, [NotNull] String /*!*/ strAttrName)
 {
     return(DBAdapter.getDB(strPartition).getAttrMgr().isBlobAttr(nSrcID, strAttrName));
 }
Beispiel #16
0
 public static void ShowPopup(RubyModule /*!*/ self, Hash args)
 {
 }
Beispiel #17
0
        public static void update_blob_attribs(RubyModule /*!*/ self, [NotNull] String /*!*/ strPartition, [NotNull] int /*!*/ srcID)
        {
            DBAdapter db = DBAdapter.getDB(strPartition);

            db.getAttrMgr().loadBlobAttrs(db);
        }
Beispiel #18
0
 public static void HidePopup(RubyModule /*!*/ self)
 {
 }
Beispiel #19
0
 public static void logout(RubyModule /*!*/ self)
 {
     SyncThread.stopSync();
     SyncThread.getSyncEngine().stopSyncByUser();
     SyncThread.getSyncEngine().logout();
 }
Beispiel #20
0
 public static void Vibrate(RubyModule /*!*/ self, int duration)
 {
 }
Beispiel #21
0
 public static void set_source_property(RubyModule /*!*/ self, [NotNull] int /*!*/ nSrcID, [NotNull] String /*!*/ strPropName, [NotNull] String /*!*/ strPropValue)
 {
     SyncEngine.getSourceOptions().setProperty(nSrcID, strPropName, strPropValue);
 }
Beispiel #22
0
 public static void PlayFile(RubyModule /*!*/ self, [NotNull] String /*!*/ fileName, [NotNull] String /*!*/ mediaType)
 {
 }
Beispiel #23
0
 public static void add_objectnotify(RubyModule /*!*/ self, [NotNull] int /*!*/ nSrcID, [NotNull] string /*!*/ strObject)
 {
     SyncThread.getSyncEngine().getNotify().addObjectNotify(nSrcID, strObject);
 }
Beispiel #24
0
 public static void ShowStatus(RubyModule /*!*/ self, [NotNull] String /*!*/ title, [NotNull] String /*!*/ text, String /*!*/ hideLabel)
 {
 }
Beispiel #25
0
 public static void clean_objectnotify(RubyModule /*!*/ self)
 {
     SyncThread.getSyncEngine().getNotify().cleanObjectNotifications();
 }
Beispiel #26
0
 public static void set_notification(RubyModule /*!*/ self, [NotNull] int /*!*/ nSrcID, [NotNull] String /*!*/ url, string /*!*/ callback_param)
 {
     SyncThread.getSyncEngine().getNotify().setSyncNotification(nSrcID,
                                                                new SyncNotify.SyncNotification(url, callback_param != null ? callback_param : "", nSrcID != -1));
 }
Beispiel #27
0
 public static int logged_in(RubyModule /*!*/ self)
 {
     return(SyncThread.getSyncEngine().isLoggedIn() ? 1 : 0);
 }
Beispiel #28
0
 public static void enable_status_popup(RubyModule /*!*/ self, bool /*!*/ bEnable)
 {
     SyncThread.getSyncEngine().getNotify().enableStatusPopup(bEnable);
 }
Beispiel #29
0
 internal virtual void BuildSuperCallNoFlow(MetaObjectBuilder /*!*/ metaBuilder, CallArguments /*!*/ args, string /*!*/ name, RubyModule /*!*/ declaringModule)
 {
     BuildCallNoFlow(metaBuilder, args, name);
 }
Beispiel #30
0
 public static void set_notification(RubyModule /*!*/ self, [NotNull] int /*!*/ srcID, [NotNull] String /*!*/ url, string /*!*/ callback_param)
 {
 }