view dstep/foundation/NSDistributedLock.d @ 16:19885b43130e

Huge update, the bridge actually works now
author Jacob Carlborg <doob@me.com>
date Sun, 03 Jan 2010 22:06:11 +0100
parents 7ff919f595d5
children b9de51448c6b
line wrap: on
line source

/**
 * Copyright: Copyright (c) 2009 Jacob Carlborg.
 * Authors: Jacob Carlborg
 * Version: Initial created: Aug 3, 2009 
 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
 */
module dstep.foundation.NSDistributedLock;

import dstep.foundation.NSDate;
import dstep.foundation.NSObject;
import dstep.foundation.NSString;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc;

class NSDistributedLock : NSObject
{
	mixin (ObjcWrap);
	
	this ()
	{
		super(typeof(this).alloc.init.objcObject);
	}
	
	typeof(this) init ()
	{
		return invokeObjcSelf!(typeof(this), "init");
	}

	static NSDistributedLock lockWithPath (NSString path)
	{
		return invokeObjcSuperClass!(NSDistributedLock, "lockWithPath:", NSString)(path);
	}

	Object initWithPath (NSString path)
	{
		return invokeObjcSelf!(Object, "initWithPath:", NSString)(path);
	}

	this (NSString path)
	{
		typeof(this).alloc.initWithPath(path);
	}

	bool tryLock ()
	{
		return invokeObjcSelf!(bool, "tryLock");
	}

	void unlock ()
	{
		return invokeObjcSelf!(void, "unlock");
	}

	void breakLock ()
	{
		return invokeObjcSelf!(void, "breakLock");
	}

	NSDate lockDate ()
	{
		return invokeObjcSelf!(NSDate, "lockDate");
	}
}