Click here to Skip to main content
15,888,238 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
GeneralRe: bulk data should be in executable Pin
jschell25-Aug-17 9:01
jschell25-Aug-17 9:01 
GeneralRe: bulk data should be in executable Pin
Erhy28-Aug-17 6:31
Erhy28-Aug-17 6:31 
GeneralRe: bulk data should be in executable Pin
Eddy Vluggen28-Aug-17 7:21
professionalEddy Vluggen28-Aug-17 7:21 
GeneralRe: bulk data should be in executable Pin
Erhy28-Aug-17 10:29
Erhy28-Aug-17 10:29 
GeneralRe: bulk data should be in executable Pin
Eddy Vluggen28-Aug-17 10:40
professionalEddy Vluggen28-Aug-17 10:40 
GeneralRe: bulk data should be in executable Pin
Erhy28-Aug-17 10:51
Erhy28-Aug-17 10:51 
QuestionCall Into or Notify Other Instances Of Your App Pin
Kevin Marois7-Aug-17 10:44
professionalKevin Marois7-Aug-17 10:44 
AnswerRe: Call Into or Notify Other Instances Of Your App Pin
Eddy Vluggen13-Aug-17 1:05
professionalEddy Vluggen13-Aug-17 1:05 
Kevin Marois wrote:
How would you tell other instances of your app that something has happened, or to take some action?
I usually don't, but when forced to, I'd use a queue in the database and poll that. There'd be a slight delay, just as GMail has.

Kevin Marois wrote:
Record added to table
I wouldn't; I dislike the idea of lists growing while you're working with it. Or worse, data changing while you are editing Smile | :)

Kevin Marois wrote:
Record is locked/unlocked by a user
Again, I wouldn't; has never been a problem to let the database handle that.

Kevin Marois wrote:
User has logged in/out
I wouldn't; even if both apps are on the same desktop, only the active one (the one with input-focus) would be logged out.

Kevin Marois wrote:
Force Logout
I wouldn't; the server would simply return an error-condition on the next request, similar to Sql Management Studio.

To answer the question; yes, it seems like SignalR is a usefull communication-package. Now running a compiled script on a webhost may have the advantage of being very cross-platform, I would certainly not call it "realtime". Anything sent to a browser and digested by JavaScript is very noticeably "not realtime".

Kevin Marois wrote:
Anyone have any other ideas?
I think that SignalR might work better in a web-environment, for those who are building web-apps. For a desktop-application I'd prefer a simple socket (and not another dependency), unless there is a very compelling argument against it.
Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]

GeneralRe: Call Into or Notify Other Instances Of Your App Pin
jschell14-Aug-17 8:22
jschell14-Aug-17 8:22 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Eddy Vluggen14-Aug-17 23:31
professionalEddy Vluggen14-Aug-17 23:31 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Pete O'Hanlon14-Aug-17 23:42
mvePete O'Hanlon14-Aug-17 23:42 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Eddy Vluggen14-Aug-17 23:51
professionalEddy Vluggen14-Aug-17 23:51 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
jschell16-Aug-17 5:43
jschell16-Aug-17 5:43 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Pete O'Hanlon16-Aug-17 6:26
mvePete O'Hanlon16-Aug-17 6:26 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Kevin Marois16-Aug-17 7:23
professionalKevin Marois16-Aug-17 7:23 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
jschell18-Aug-17 12:36
jschell18-Aug-17 12:36 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Kevin Marois16-Aug-17 7:23
professionalKevin Marois16-Aug-17 7:23 
AnswerRe: Call Into or Notify Other Instances Of Your App Pin
Mycroft Holmes14-Aug-17 13:30
professionalMycroft Holmes14-Aug-17 13:30 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Kevin Marois15-Aug-17 7:56
professionalKevin Marois15-Aug-17 7:56 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Gerry Schmitz15-Aug-17 8:36
mveGerry Schmitz15-Aug-17 8:36 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Kevin Marois15-Aug-17 8:38
professionalKevin Marois15-Aug-17 8:38 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Gerry Schmitz16-Aug-17 5:38
mveGerry Schmitz16-Aug-17 5:38 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Kevin Marois16-Aug-17 6:02
professionalKevin Marois16-Aug-17 6:02 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
jschell16-Aug-17 6:45
jschell16-Aug-17 6:45 
GeneralRe: Call Into or Notify Other Instances Of Your App Pin
Kevin Marois16-Aug-17 7:19
professionalKevin Marois16-Aug-17 7:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.