Python Forum
Time.sleep: stop appending item to the list if time is early
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Time.sleep: stop appending item to the list if time is early
#1
Hello,

I have a timing problem. I want to stop appending item to the list, if time is early.
Here is my code lines:
self.tq is the arriving item time
self.lastt is the arrived item time
dataqueue is the list that I am put and send information after item is arrived
The condition is that: if self.otherport.lastt>self.lastt-self.delaytime: I can add the information to dataqueue
And if this condition is not valid, I want to stop to add information to dataqueue unless self.otherport.lastt>self.lastt-self.delaytime. How can I do that? I know in python we have time.sleep funtion but I could not stop to add info to the list
if self.tq <= self.lastt : 
            self.tq, self.arrivingqubit = next(self.inqubits)  
            print("we are here :)1")
         if len(self.dataqueue)==0:
            if self.otherport.lastt>self.lastt-self.delaytime:
               self.dataqueue.append((self.otherport.lastt+self.delaytime,self.fakequbit)) #here we have endless loop
               print("we are here :)2")
            #else: raise RuntimeError("Otherport is too old :(")
            else: #here I need to stop to adding item to list untill self.lastt>self.lastt-self.delaytime:
Thanks
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Check time within specific time ranges basvdm 3 554 Jan-20-2025, 05:10 PM
Last Post: Gribouillis
Question [SOLVED] [datetime.strptime] ValueError: time data 'foo' does not match format 'bar' Winfried 1 1,135 Jan-02-2025, 02:09 AM
Last Post: lyly19
  Help about a specific time selection QJZ 0 372 Dec-01-2024, 11:25 AM
Last Post: QJZ
  How to move an object over time rather than instantly? temlotresid6 3 1,522 Oct-23-2024, 11:20 AM
Last Post: temlotresid6
  Is there a difference between Python’s time.sleep and win32api.Sleep? phpjunkie 4 1,018 Sep-21-2024, 05:17 PM
Last Post: aakritiintelligence
  How to insert text time - into video frames? oxidian 0 965 Aug-25-2024, 04:51 PM
Last Post: oxidian
  Using RTC time in Rasberry Pi Programs sab201 1 828 Aug-18-2024, 05:50 PM
Last Post: snippsat
  Schedule exit a program at a specific time 4 am every day. chubbychub 3 1,363 May-17-2024, 03:45 PM
Last Post: chubbychub
  Filer and sort files by modification time in a directory tester_V 5 2,201 May-02-2024, 05:39 PM
Last Post: tester_V
Question Convert UTC now() to local time to compare to a strptime() Calab 2 1,988 Apr-29-2024, 07:24 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020