I'm trying to get the constructor of an object to initialize a field to something, pause for 30 seconds, and then set it to something else afterwards.

Here is my code:

namespace Practice
{
    public enum TransactionStatus { Pending, Complete }

    public class Transaction
    {
        private TransactionStatus status;

        public Transaction()
        {
            this.status = TransactionStatus.Pending;
            //(I'm trying to set this to TransactionStatus.Complete after 30 seconds. What do I do afterwards?)
        }

        // Here is the method to do it... Am I right to think that.status this must be reset this.status in the constructor?
        public TransactionStatus SetStatus()
        {
            // sleep for 30 seconds and then proceed.
            System.Threading.Thread.Sleep(3000);
            return TransactionStatus.Complete;
        }
    }
link|improve this question

7  
Why? I'm almost positive you are doing something really wrong here. – Andrew Barber Nov 20 '11 at 8:47
I'm displaying this as a ToString where it says "Pending..." for 30 seconds, and then "Complete" afterwards. – iggy2012 Nov 20 '11 at 8:49
Again, I ask why are you doing that? What is the purpose for waiting 30 seconds? – Andrew Barber Nov 20 '11 at 8:51
It's a sort of simulation for when a deposit transaction... Our instructor made us pretend that it took 30 seconds to process a transaction, and he wanted us to display it to the user. – iggy2012 Nov 20 '11 at 8:53
2  
This sounds all wrong. What's you actual goal? – David Heffernan Nov 20 '11 at 8:54
feedback

closed as not a real question by Sam Saffron Nov 22 '11 at 5:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

Here's an alternative cheating method since you said you're using toString();

private DateTime called;

public TranlationStatus()
{
    this.called = DateTime.Now; 
}

public ToString()
{
    if (this.called - DateTime.Now < new TimeSpan(0,0,20))
    {
        return TransationStatus.Pending.ToString();
    }
    else
    {
        return TransactionStatus.Complete.ToString();
    }
}
link|improve this answer
+1 no sleeping and no munching around with threads, btw: TimeSpan.FromSeconds(20) might be better as it's easier to read. – ChrisWue Nov 20 '11 at 18:14
feedback

I wouldn't put it in the constructor to be honest. I'd do it in the main code:

TransactionStatus status = new TransactionStatus();

Thread.Sleep(3000);

status.SetStatus();

Of course that will block the entire program. If you don't want that, you'll have to write your own function and call it as a separate thread. Again in the main code.

That said I really can;t understand why you want to do something like this.

link|improve this answer
1  
Makes no difference whether it happens inside or outside the constructor. – David Heffernan Nov 20 '11 at 8:53
2  
I guess not. I just don't like putting Thread sleeping statuses into constructors. Its a huge negative for reusability and someone else debugging the code. – Haedrian Nov 20 '11 at 8:58
1  
Well, I never use sleep anywhere ever in real code. But I guess this is homework so normal rules don't apply. – David Heffernan Nov 20 '11 at 9:01
1  
Is it me, or does programming homework just plain suck these days? hehe – Andrew Barber Nov 20 '11 at 9:06
Any suggestions on where I can learn better? – iggy2012 Nov 20 '11 at 10:02
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.