예제 #1
0
 public static void enable_status_popup(RubyModule /*!*/ self, bool /*!*/ enable)
 {
 }
예제 #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());
 }
예제 #3
0
 internal protected virtual RubyMemberInfo Copy(RubyMemberFlags flags, RubyModule /*!*/ module)
 {
     throw Assert.Unreachable;
 }
예제 #4
0
 public static void set_objectnotify_url(RubyModule /*!*/ self, [DefaultProtocol, NotNull] string /*!*/ url)
 {
     SyncNotify.setObjectNotifyUrl(url);
 }
예제 #5
0
 public static object dosync(RubyModule /*!*/ self)
 {
     SyncThread.getInstance().addQueueCommand(new SyncThread.SyncCommand(SyncThread.scSyncAll, false));
     return(SyncThread.getInstance().getRetValue());
 }
예제 #6
0
 public static void set_threaded_mode(RubyModule /*!*/ self, [NotNull] bool /*!*/ bThreadMode)
 {
     SyncThread.getInstance().setNonThreadedMode(!bThreadMode);
     SyncThread.getSyncEngine().setNonThreadedMode(!bThreadMode);
 }
예제 #7
0
 public static void set_pollinterval(RubyModule /*!*/ self)
 {
     SyncThread.stopSync();
 }
예제 #8
0
 public static int set_pollinterval(RubyModule /*!*/ self, [NotNull] int /*!*/ nInterval)
 {
     return(0);
 }
예제 #9
0
 public static void set_pollinterval(RubyModule /*!*/ self)
 {
 }
예제 #10
0
 public static void logout(RubyModule /*!*/ self)
 {
 }
예제 #11
0
 public static void set_syncserver(RubyModule /*!*/ self, [NotNull] String /*!*/ syncserver)
 {
 }
예제 #12
0
 public static void set_threaded_mode(RubyModule /*!*/ self, [NotNull] bool /*!*/ bThreadMode)
 {
 }
예제 #13
0
 public static void update_blob_attribs(RubyModule /*!*/ self, [NotNull] String /*!*/ szPartition, [NotNull] int /*!*/ srcID)
 {
 }
예제 #14
0
 public static bool is_blob_attr(RubyModule /*!*/ self, [NotNull] String /*!*/ szPartition, [NotNull] int /*!*/ srcID, [NotNull] String /*!*/ szAttrName)
 {
     return(false);
 }
예제 #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));
 }
예제 #16
0
파일: RhoAlert.cs 프로젝트: ycaihua/rhodes
 public static void ShowPopup(RubyModule /*!*/ self, Hash args)
 {
 }
예제 #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);
        }
예제 #18
0
파일: RhoAlert.cs 프로젝트: ycaihua/rhodes
 public static void HidePopup(RubyModule /*!*/ self)
 {
 }
예제 #19
0
 public static void logout(RubyModule /*!*/ self)
 {
     SyncThread.stopSync();
     SyncThread.getSyncEngine().stopSyncByUser();
     SyncThread.getSyncEngine().logout();
 }
예제 #20
0
파일: RhoAlert.cs 프로젝트: ycaihua/rhodes
 public static void Vibrate(RubyModule /*!*/ self, int duration)
 {
 }
예제 #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);
 }
예제 #22
0
파일: RhoAlert.cs 프로젝트: ycaihua/rhodes
 public static void PlayFile(RubyModule /*!*/ self, [NotNull] String /*!*/ fileName, [NotNull] String /*!*/ mediaType)
 {
 }
예제 #23
0
 public static void add_objectnotify(RubyModule /*!*/ self, [NotNull] int /*!*/ nSrcID, [NotNull] string /*!*/ strObject)
 {
     SyncThread.getSyncEngine().getNotify().addObjectNotify(nSrcID, strObject);
 }
예제 #24
0
파일: RhoAlert.cs 프로젝트: ycaihua/rhodes
 public static void ShowStatus(RubyModule /*!*/ self, [NotNull] String /*!*/ title, [NotNull] String /*!*/ text, String /*!*/ hideLabel)
 {
 }
예제 #25
0
 public static void clean_objectnotify(RubyModule /*!*/ self)
 {
     SyncThread.getSyncEngine().getNotify().cleanObjectNotifications();
 }
예제 #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));
 }
예제 #27
0
 public static int logged_in(RubyModule /*!*/ self)
 {
     return(SyncThread.getSyncEngine().isLoggedIn() ? 1 : 0);
 }
예제 #28
0
 public static void enable_status_popup(RubyModule /*!*/ self, bool /*!*/ bEnable)
 {
     SyncThread.getSyncEngine().getNotify().enableStatusPopup(bEnable);
 }
예제 #29
0
 internal virtual void BuildSuperCallNoFlow(MetaObjectBuilder /*!*/ metaBuilder, CallArguments /*!*/ args, string /*!*/ name, RubyModule /*!*/ declaringModule)
 {
     BuildCallNoFlow(metaBuilder, args, name);
 }
예제 #30
0
 public static void set_notification(RubyModule /*!*/ self, [NotNull] int /*!*/ srcID, [NotNull] String /*!*/ url, string /*!*/ callback_param)
 {
 }