Questions tagged [user-inactivity]

Questions related to the detecting or handling of inactivity events by the user.

83 questions
1
vote
0 answers

Establishing Android network connectivity after a long period of device inactivity

My application forwards SMS' to an email address. One big problem is the first message of the day. The device (Attrix set in maximum battery saving mode) is in a deep sleep. The SMS is received normally, but there is no network/data connectivity…
PVS
  • 1,168
  • 11
  • 24
0
votes
1 answer

blazor webassembly net6.0 page inactivity

How can i check inactivity in a page? Example: I load a page and after 60 seconds, if there is no user activity I will like to call a method. I'm on: net6.0, web assembly,
marcoqf73
  • 1,306
  • 3
  • 14
  • 18
0
votes
0 answers

how to update database column on session expire in laravel

I want to update a database column on session expire after 15min of inactivity in laravel. Is there a way to trigger an update in the DB upon session expiration? I have tried multiple solutions but it is not work for me. Can anyone please help me to…
0
votes
1 answer

How can I check for user activity/idle from a Windows service written in Python?

I've written a Windows service in Python that needs to be able to detect user activity. Under normal circumstances I would call the Windows GetLastInputInfo method, but that method doesn't work when called by a service. Here's the relevant info from…
JRiggles
  • 4,847
  • 1
  • 12
  • 27
0
votes
0 answers

How to prevent screensaver / inactivity timer when Unity application not the active Window

In Unity you can prevent the screensaver kicking in / inactivity timer from shutting the computer down by using the Screen.sleepTimeout setting: Screen.sleepTimeout = SleepTimeout.NeverSleep; However this only seems to work if the application is…
0
votes
1 answer

Prevent session timeout due to inactivity

I am a student and need to be logged into a website that keeps logging me out, due to inactivity after 30 minutes or so. I've tried to prevent the code from logging me out with extensions like "Session Keeper" "staying alive" "Stay Forever" and…
0
votes
1 answer

Detect Touch in Base Class

In my application i want to do a session timeout after some time of inactivity. But if the user interacts with the app the timer needs to be reset. Main concern is this should be implemented in part of the application not for the whole application,…
Shruti
  • 1,849
  • 1
  • 13
  • 21
0
votes
2 answers

Notify inactive users (who have not opened the app for 7 days) even if Android app gets killed or runs in background

I have a requirement where I need to notify inactive users (who have not opened the app for 7 days). This means the notification must be sent if the app is in background for 7 days or the app has been killed and not used for 7 days. I followed an…
segfault404
  • 281
  • 1
  • 11
0
votes
3 answers

how to make animation inactive for some time period in jQuery

here the jsfiddle link to my problem http://jsfiddle.net/XnnvD/35/ (not quite working) I'll try explaining what the problem is, I have 3 sets of animation in jQuery 1- Image bounces and fades away after some TimePeriod as…
tpp
  • 3
  • 2
0
votes
1 answer

How to change the current page to another when the user is inactive in Flutter?

when the app is inactive for 5 minutes in Page A, i want to redirect it to Page B. like auto redirect (without a button) Thanks you !
swing13
  • 33
  • 1
  • 12
0
votes
0 answers

Angular 7 - Observable subscription after reload page

Good afternoon. I'm working on solution to create a inactivity modal after the user sign in into the application. Per requirements of the project, I can't use any library or package to implement this task. The implementation that I have, works in…
0
votes
0 answers

Django session: disconnect when user is inactive

is there a simple way to disconnect a user that is inactive for 3 minutes for example? I have develop an authentification app following a tutorial…
SLATER
  • 613
  • 9
  • 31
0
votes
2 answers

How to handle idle session timeout across client apps and Identityserver4

I got stuck and need some advice or pointer to a solution. I have a fairly simple IdentityServer4 setup for our single sign on Implementation. Three Apps IdentityServer4 with asp.net core identity (ID server) ASP.NET Core 2.2 MVC (client1) ASP.NET…
0
votes
3 answers

Execute function on user inactivity

At work we have to do our own time management and get controlled from time to time. Because I always forget, when I take my breaks and how long, I decided to write a python script which runs on startup and writes the current time after I haven't…
carlWheezer
  • 15
  • 2
  • 7
0
votes
1 answer

How to logout user after 30 mins in php when there is no activity?

I am working on a website in which I want to logout user after 30 mins when there is no user activity. The php code code which I have used in order to start a session is:
flash
  • 1,455
  • 11
  • 61
  • 132