Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bugvm.apple.dispatch;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
/**/
/**/
/**/
/**/@Library("System")/**/
/**/public/**/ class /**/DispatchQueue/**/
extends /**/DispatchObject/**/
/**//**/ {
/**/public static class DispatchQueuePtr extends Ptr {}/**/
/**/static { Bro.bind(DispatchQueue.class); }/**/
/**/
public static final int PRIORITY_HIGH = 2;
public static final int PRIORITY_DEFAULT = 0;
public static final int PRIORITY_LOW = -2;
public static final int PRIORITY_BACKGROUND = -32768;
/**/
/**/
protected DispatchQueue() {}
/**/
/**//**/
/**//**/
/**
* @since Available in iOS 4.0 and later.
*/
public void apply(long iterations, VoidBlock1 block) {
apply(iterations, this, block);
}
/**
* @since Available in iOS 4.0 and later.
*/
public void after(long delay, java.util.concurrent.TimeUnit unit, Runnable block) {
after(Dispatch.time(Dispatch.TIME_NOW, unit.toNanos(delay)), this, block);
}
/**
* Submits the specified {@link Runnable} on this {@link DispatchQueue} at
* the specified time.
*
* @param when the time when to submit the {@link Runnable}.
* @param block the {@link Runnable} to be run.
*
* @since Available in iOS 4.0 and later.
*/
public void at(Date when, Runnable block) {
long ms = when.getTime();
timespec ts = new timespec(ms / 1000, (ms % 1000) * 1000);
after(Dispatch.walltime(ts, 0), this, block);
}
/**/
/**
* @since Available in iOS 4.0 and later.
*/
@GlobalValue(symbol="_dispatch_main_q", optional=true, dereference=false)
public static native DispatchQueue getMainQueue();
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="dispatch_async", optional=true)
public native void async(@Block Runnable block);
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="dispatch_sync", optional=true)
public native void sync(@Block Runnable block);
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="dispatch_apply", optional=true)
private static native void apply(@MachineSizedUInt long iterations, DispatchQueue queue, @Block("(@MachineSizedUInt)") VoidBlock1 block);
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="dispatch_get_global_queue", optional=true)
public static native DispatchQueue getGlobalQueue(@MachineSizedSInt long identifier, @MachineSizedUInt long flags);
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="dispatch_queue_create", optional=true)
public static native DispatchQueue create(@com.bugvm.rt.bro.annotation.Marshaler(StringMarshalers.AsUtf8ZMarshaler.class) String label, DispatchQueueAttr attr);
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="dispatch_queue_get_label", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(StringMarshalers.AsUtf8ZMarshaler.class) String getLabel();
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="dispatch_after", optional=true)
private static native void after(long when, DispatchQueue queue, @Block Runnable block);
/**
* @since Available in iOS 4.3 and later.
*/
@Bridge(symbol="dispatch_barrier_async", optional=true)
public native void barrierAsync(@Block Runnable block);
/**
* @since Available in iOS 4.3 and later.
*/
@Bridge(symbol="dispatch_barrier_sync", optional=true)
public native void barrierSync(@Block Runnable block);
/**/
}